@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Roboto:wght@400;500;700;900&display=swap');

html,
body,
body * {
    font-family: 'Tajawal', sans-serif !important;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.brand-en,
.brand-en * {
    font-family: 'Roboto', sans-serif !important;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Cairo", sans-serif;
    background: #fff;
    color: #007F80;
    overflow-x: hidden;
    direction: rtl
}

.cta2-wrap {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    position: relative;
    background: linear-gradient(135deg, #003030 0%, #004F50 40%, #006060 70%, #007F80 100%);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 24px 100px;
}

.cta2-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(0, 195, 196, 0.18) 0%, transparent 65%);
    pointer-events: none;
    animation: cta2PulseGlow 6s ease-in-out infinite;
}

@keyframes cta2PulseGlow {

    0%,
    100% {
        opacity: .6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.cta2-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
    pointer-events: none;
}

.cta2-orb1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 160, 161, .3), transparent 70%);
    top: -80px;
    right: -60px;
    animation: cta2OrbFloat 8s ease-in-out infinite;
}

.cta2-orb2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 100, 101, .4), transparent 70%);
    bottom: -40px;
    left: -40px;
    animation: cta2OrbFloat 10s ease-in-out infinite reverse;
}

.cta2-orb3 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 200, 201, .2), transparent 70%);
    top: 40%;
    left: 10%;
    animation: cta2OrbFloat 12s ease-in-out infinite 3s;
}

@keyframes cta2OrbFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    33% {
        transform: translateY(-20px) translateX(10px);
    }

    66% {
        transform: translateY(10px) translateX(-15px);
    }
}

.cta2-spark-dot {
    position: absolute;
    background: #00C8C9;
    border-radius: 50%;
    pointer-events: none;
    animation: cta2SparkAnim var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
}

@keyframes cta2SparkAnim {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    20% {
        opacity: 1;
        transform: scale(1);
    }

    80% {
        opacity: .6;
    }

    100% {
        opacity: 0;
        transform: scale(0) translateY(-30px);
    }
}

.cta2-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    width: 100%;
}

.cta2-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 200, 201, .15);
    border: 1px solid rgba(0, 200, 201, .3);
    color: #00C8C9;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: cta2FadeDown .6s ease both;
}

.cta2-badge-dot {
    width: 7px;
    height: 7px;
    background: #00C8C9;
    border-radius: 50%;
    animation: cta2DotPulse 1.8s ease-in-out infinite;
}

@keyframes cta2DotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 200, 201, .5);
    }

    50% {
        opacity: .8;
        transform: scale(1.3);
        box-shadow: 0 0 0 5px rgba(0, 200, 201, 0);
    }
}

.cta2-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 18px;
    animation: cta2FadeDown .7s ease .1s both;
    letter-spacing: -.5px;
}

.cta2-title span {
    color: #00C8C9;
    position: relative;
    display: inline-block;
}

.cta2-title span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00C8C9, transparent);
    border-radius: 2px;
    animation: cta2LineGrow .8s ease .8s both;
    transform-origin: right;
}

@keyframes cta2LineGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.cta2-sub {
    font-size: clamp(14px, 2.2vw, 17px);
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
    margin-bottom: 32px;
    animation: cta2FadeDown .7s ease .2s both;
    font-weight: 400;
}

.cta2-sub .brand-en-sub {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #00C8C9;
}

.cta2-checks {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: cta2FadeUp .7s ease .3s both;
}

.cta2-check {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 700;
    background: rgba(0, 200, 201, .1);
    border: 1px solid rgba(0, 200, 201, .2);
    padding: 8px 18px;
    border-radius: 100px;
    transition: all .25s ease;
    cursor: default;
}

.cta2-check:hover {
    background: rgba(0, 200, 201, .2);
    border-color: rgba(0, 200, 201, .4);
    transform: translateY(-2px);
}

.cta2-check-ic {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #007F80, #00C8C9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 200, 201, .4);
}

.cta2-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: cta2FadeUp .7s ease .4s both;
}

.cta2-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: #004F50;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: default;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.cta2-btn-white:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25), 0 0 0 4px rgba(0, 200, 201, .2);
}

.cta2-btn-white:active {
    transform: scale(.97);
}

.cta2-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, .35);
    text-decoration: none;
    cursor: default;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.cta2-btn-outline:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .65);
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}

.cta2-btn-outline:active {
    transform: scale(.97);
}

.cta2-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
}

@keyframes cta2FadeDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cta2FadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#sp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22a6a6, #007F80);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 2000
}

#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleAnim 10s linear infinite
}

@keyframes particleAnim {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0)
    }

    10% {
        opacity: .5
    }

    90% {
        opacity: .15
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1.5)
    }
}


.btn-contact {
    padding: 9px 20px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: #1a8080;
    cursor: default;
    transition: all .25s
}

.btn-contact:hover {
    background: rgba(26, 128, 128, .07)
}

.btn-demo {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    background: #0f766e;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: default;
    transition: all .25s
}

.btn-demo:hover {
    background: #155f5f;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 128, 128, .3)
}

.hero {
    min-height: 100vh;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://www.maxflow.me/files/b264ee1b2f0ec66d436a44089093b313.jpg') center/cover no-repeat;
    z-index: 0
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(13, 84, 84, .80) 0%,
            rgba(10, 60, 60, .72) 40%,
            rgba(8, 45, 45, .85) 100%)
}

.hero-shimmer {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(34, 212, 184, .12), transparent 65%);
    z-index: 1;
    pointer-events: none;
    animation: shimmerPulse 5s ease-in-out infinite
}

@keyframes shimmerPulse {

    0%,
    100% {
        opacity: .6;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.05)
    }
}

.hero-main {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 40px 120px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.hero-badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 212, 184, .15);
    border: 1px solid rgba(34, 212, 184, .35);
    color: #22d4b8;
    padding: 7px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 28px;
    animation: fadeInDown .7s ease both
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22d4b8;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(1.5)
    }
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    animation: fadeInDown .8s .1s ease both
}

.hero-title .hl {
    color: #22d4b8;
    text-shadow: 0 0 40px rgba(34, 212, 184, .5)
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 580px;
    animation: fadeInDown .8s .25s ease both
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
    animation: fadeInDown .8s .4s ease both
}

.hero-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 48px;
    animation: fadeInDown .8s .55s ease both
}

.hero-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: all .3s
}

.hero-chip:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-3px)
}

.hero-chip svg {
    flex-shrink: 0;
    opacity: .8
}

.hero-chip-num {
    color: #22d4b8;
    font-size: 18px;
    font-weight: 900
}

.btn-wh {
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    color: #1a8080;
    cursor: default;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .15)
}

.btn-wh:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .2)
}

.btn-ol {
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, .5);
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: default;
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-ol:hover {
    border-color: #22d4b8;
    color: #22d4b8;
    background: rgba(34, 212, 184, .08);
    transform: translateY(-3px)
}

.hero-note {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    animation: fadeInDown .8s .45s ease both
}

.hero-note b {
    color: rgba(255, 255, 255, .8)
}


.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2
}

.hero-wave svg {
    display: block;
    width: 100%
}

.next-section {
    border-top: none !important;
    box-shadow: none !important;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fff;
    z-index: 3;
}


.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInLeft .9s .1s ease both
}

.hmock {
    background: rgba(255, 255, 255, .13);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 20px;
    padding: 22px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .2);
    animation: hfl 4s ease-in-out infinite
}

@keyframes hfl {

    0%,
    100% {
        transform: translateY(0) rotate(-.5deg)
    }

    50% {
        transform: translateY(-10px) rotate(.5deg)
    }
}

.mt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.mt-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff
}

.mt-dots {
    display: flex;
    gap: 5px
}

.mt-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.mr {
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 11px 14px;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 10px
}

.mi {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .18);
    flex-shrink: 0
}

.ml {
    flex: 1
}

.ml-l {
    height: 7px;
    background: rgba(255, 255, 255, .3);
    border-radius: 3px;
    margin-bottom: 5px
}

.ml-l.s {
    width: 55%
}

.mb-badge {
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0
}

.mb-g {
    background: rgba(52, 211, 153, .25);
    color: #6ee7b7
}

.mb-y {
    background: rgba(34, 212, 184, .25);
    color: #22d4b8
}

.fc {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .13);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #0d3333
}

.fc1 {
    top: -16px;
    right: -20px;
    animation: hfl 3s ease-in-out infinite
}

.fc2 {
    bottom: 10px;
    left: -20px;
    animation: hfl 3.5s ease-in-out infinite reverse
}

.fci {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px
}

.fci.tl {
    background: linear-gradient(135deg, #1a8080, #22a6a6)
}

.fci.yw {
    background: linear-gradient(135deg, #22d4b8, #0d9488)
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0
}

.hero-wave svg {
    display: block;
    width: 100%
}

.sec {
    padding: 90px 40px;
    position: relative;
    z-index: 1
}

.si {
    max-width: 1200px;
    margin: 0 auto
}

.stag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 128, 128, .07);
    border: 1px solid rgba(26, 128, 128, .18);
    color: #1a8080;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px
}

.sh2 {
    font-size: 42px;
    font-weight: 900;
    color: #0d3333;
    line-height: 1.2;
    margin-bottom: 14px
}

.sh2 span {
    color: #1a8080
}

.ssub {
    font-size: 16px;
    color: #4a7a7a;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 56px
}

.tc {
    text-align: center
}

.rv {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s cubic-bezier(.16, 1, .3, 1), transform .65s cubic-bezier(.16, 1, .3, 1)
}

.rv.in {
    opacity: 1;
    transform: none
}

.trust-bar {
    background: linear-gradient(135deg, #0d5454 0%, #1a8080 50%, #0d5454 100%);
    padding: 70px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(34, 212, 184, .12), transparent 65%);
    pointer-events: none
}

.trust-in {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center
}

.tlbl {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 48px;
    font-weight: 600
}

.tnums {
    display: flex;
    justify-content: center;
    gap: 0;
    align-items: stretch
}

.tn-item {
    flex: 1;
    max-width: 300px;
    padding: 32px 24px;
    position: relative;
    cursor: default;
    transition: transform .3s
}

.tn-item:hover {
    transform: translateY(-4px)
}

.tn-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, .15)
}

.tn-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 212, 184, .15);
    border: 1px solid rgba(34, 212, 184, .25);
    border-radius: 16px;
    animation: iconBounce 3s ease-in-out infinite
}

.tn-item:nth-child(2) .tn-icon {
    animation-delay: .6s
}

.tn-item:nth-child(3) .tn-icon {
    animation-delay: 1.2s
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.tn-n {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px
}

.tn-n-accent {
    color: #22d4b8
}

.tn-l {
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    margin-top: 10px;
    font-weight: 500
}

.tn-bar {
    height: 2px;
    background: rgba(255, 255, 255, .1);
    border-radius: 1px;
    margin-top: 20px;
    overflow: hidden
}

.tn-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #22d4b8, rgba(34, 212, 184, .3));
    border-radius: 1px;
    animation: barSweep 2.5s ease-in-out infinite
}

@keyframes barSweep {
    0% {
        width: 0;
        opacity: 0
    }

    40% {
        opacity: 1
    }

    100% {
        width: 100%;
        opacity: .6
    }
}


.stat-title {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    color: #007F80;
    margin: 0 auto 30px;
    line-height: 1.3;
}

.stat-bar {
    background: #fff;
    padding: 56px 40px;
    border-bottom: 1px solid #eef5f5;
    position: relative;
    z-index: 1;
    overflow: hidden
}


.stat-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(34, 212, 184, .06), transparent 60%);
    pointer-events: none
}

.stat-in {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0
}

.sb {
    text-align: center;
    padding: 0 20px;
    position: relative;
    flex: 1
}

.sb-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(26, 128, 128, .08), rgba(34, 212, 184, .08));
    border: 1px solid rgba(26, 128, 128, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1)
}

.sb:hover .sb-icon {
    background: linear-gradient(135deg, #1a8080, #22a6a6);
    border-color: transparent;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(26, 128, 128, .25)
}

.sb:hover .sb-icon svg {
    fill: #fff
}

.sb-icon svg {
    fill: #1a8080;
    transition: fill .3s
}

.sb-n {
    font-size: 52px;
    font-weight: 900;
    color: #0d3333;
    line-height: 1;
    letter-spacing: -2px;
    transition: color .3s
}

.sb-n .sb-accent {
    color: #1a8080
}

.sb:hover .sb-n {
    color: #1a8080
}

.sb-l {
    font-size: 14px;
    color: #4a7a7a;
    margin-top: 8px;
    font-weight: 500
}

.sb-bar {
    height: 2px;
    background: #eef5f5;
    border-radius: 1px;
    margin-top: 16px;
    overflow: hidden
}

.sb-bar-f {
    height: 100%;
    background: linear-gradient(90deg, #1a8080, #22d4b8);
    border-radius: 1px;
    width: 0;
    transition: width 1.4s cubic-bezier(.25, .46, .45, .94)
}

.sb-bar-f.in {
    width: 100%
}

.sb-d {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, #e0eeee, transparent);
    flex-shrink: 0
}

.lo {
    background: linear-gradient(160deg, #0d5454, #1a8080);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.lo-in {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto
}

.lo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #22d4b8;
    color: #0d3333;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(34, 212, 184, .35);
    animation: bnc .3s ease infinite alternate
}

@keyframes bnc {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-3px)
    }
}

.lo-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px
}

.lo-title span {
    color: #22d4b8;
    font-style: italic
}

.lo-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7
}

.lo-cks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 560px;
    margin: 0 auto 28px
}

.lo-ck {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fff
}

.ck-ic {
    color: #22d4b8;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0
}

.lo-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}

.why-sec {
    background: #fff
}

.wg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.wc {
    background: #f5fbfb;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid #e0eeee;
    transition: all .35s;
    cursor: default;
    position: relative;
    overflow: hidden
}

.wc::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a8080, #22a6a6);
    opacity: 0;
    transition: opacity .35s;
    border-radius: 18px
}

.wc:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(26, 128, 128, .14)
}

.wc:hover::after {
    opacity: 1
}

.wc:hover .wi,
.wc:hover .wt,
.wc:hover .wd,
.wc:hover .wl li {
    color: #fff
}

.wc:hover .wi {
    background: rgba(255, 255, 255, .2)
}

.wi {
    width: 48px;
    height: 48px;
    background: rgba(26, 128, 128, .1);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    color: #1a8080;
    transition: all .35s
}

.wt {
    font-size: 17px;
    font-weight: 800;
    color: #0d3333;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: color .35s
}

.wd {
    font-size: 13px;
    color: #4a7a7a;
    line-height: 1.65;
    position: relative;
    z-index: 1;
    transition: color .35s
}


.how-sec {
    background: #fff;
    position: relative;
    overflow: hidden
}

.how-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(34, 212, 184, .06), transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 128, 128, .05), transparent 50%)
}

.how-sec .sh2 {
    color: #0d3333
}

.how-sec .ssub {
    color: #4a7a7a
}

.hg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative
}

.hg-line {
    position: absolute;
    top: 52px;
    right: 18%;
    left: 18%;
    height: 2px;
    background: #e0eeee;
    z-index: 0;
    overflow: hidden
}

.hg-line-fill {
    height: 100%;
    background: linear-gradient(90deg, #22a6a6, #22d4b8);
    width: 0;
    transition: width 1.4s ease .2s
}

.hg-line-fill.in {
    width: 100%
}

.hstep {
    background: #fff;
    border: 1.5px solid #e0eeee;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    cursor: default;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(26, 128, 128, .06);
    opacity: 0;
    transform: translateY(-100px) scale(.8) rotate(-2deg);
    transition:
        opacity .55s cubic-bezier(.34, 1.56, .64, 1),
        transform .55s cubic-bezier(.34, 1.56, .64, 1),
        box-shadow .3s, border-color .3s
}

.hstep.in {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg)
}

#hstep1.in {
    transition-delay: 0s
}

#hstep2.in {
    transition-delay: 0s
}

#hstep3.in {
    transition-delay: 0s
}

@keyframes landBounce {
    0% {
        box-shadow: 0 0 0 rgba(26, 128, 128, 0)
    }

    40% {
        box-shadow: 0 30px 50px rgba(26, 128, 128, .2)
    }

    70% {
        box-shadow: 0 8px 20px rgba(26, 128, 128, .08)
    }

    100% {
        box-shadow: 0 8px 24px rgba(26, 128, 128, .08)
    }
}

#hstep1.in {
    animation: landBounce .6s ease .5s both
}

#hstep2.in {
    animation: landBounce .6s ease .5s both
}

#hstep3.in {
    animation: landBounce .6s ease .5s both
}

.hstep:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 28px 60px rgba(26, 128, 128, .16) !important;
    border-color: #22a6a6
}

.hstep:hover .hs-n {
    background: linear-gradient(135deg, #1a8080, #0d5454);
    transform: scale(1.1) rotate(-5deg)
}

.hstep:hover .hs-t {
    color: #1a8080
}

.hs-n {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #22d4b8, #0d9488);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #e8f6f6;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(34, 212, 184, .35);
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1)
}

.hs-ic {
    font-size: 44px;
    margin-bottom: 16px;
    display: block;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

.hstep:hover .hs-ic {
    transform: scale(1.25) rotate(-8deg)
}

.hs-t {
    font-size: 18px;
    font-weight: 800;
    color: #0d3333;
    margin-bottom: 10px;
    transition: color .3s
}

.hs-d {
    font-size: 13px;
    color: #4a7a7a;
    line-height: 1.7
}

.hs-ring {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: 2px solid rgba(34, 212, 184, .5);
    opacity: 0;
    animation: none
}

@keyframes ringPulse {
    0% {
        opacity: .8;
        transform: translateX(-50%) scale(1)
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) scale(1.8)
    }
}

.hstep.in .hs-ring {
    animation: ringPulse .7s ease forwards
}

#hstep1.in .hs-ring {
    animation-delay: .5s
}

#hstep2.in .hs-ring {
    animation-delay: .5s
}

#hstep3.in .hs-ring {
    animation-delay: .5s
}

.hconn {
    position: absolute;
    top: 45px;
    width: 16px;
    height: 16px;
    background: #22d4b8;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34, 212, 184, .2);
    z-index: 2;
    opacity: 0;
    transform: scale(0);
    transition: opacity .3s, transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

.hconn.in {
    opacity: 1;
    transform: scale(1)
}

.hconn-1 {
    right: calc(33.33% - 8px)
}

.hconn-2 {
    right: calc(66.66% - 8px)
}

.res-sec {
    background: linear-gradient(160deg, #0d4444 0%, #1a7070 55%, #0f5050 100%);
    overflow: hidden;
    position: relative
}

.res-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 60%, rgba(34, 212, 184, .1), transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, .04), transparent 50%)
}

.res-sec .sh2 {
    color: #fff;
    font-size: 46px
}

.res-sec .ssub {
    color: rgba(255, 255, 255, .7)
}

.res-sec .stag {
    background: rgba(34, 212, 184, .2);
    border-color: rgba(34, 212, 184, .4);
    color: #22d4b8
}

.rg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, .08);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1)
}

.rc {
    background: rgba(13, 68, 68, .6);
    padding: 40px 24px;
    text-align: center;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
    cursor: default
}

.rc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 212, 184, .08), transparent);
    opacity: 0;
    transition: opacity .4s
}

.rc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22d4b8, rgba(34, 212, 184, .3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s
}

.rc:hover {
    background: rgba(20, 90, 90, .8);
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .3)
}

.rc:hover::before {
    opacity: 1
}

.rc:hover::after {
    transform: scaleX(1)
}

.rc-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(34, 212, 184, .12);
    border: 1px solid rgba(34, 212, 184, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: all .4s
}

.rc:hover .rc-icon-box {
    background: rgba(34, 212, 184, .22);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(34, 212, 184, .2)
}

.rc-n {
    font-size: 58px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px
}

.rc-n-accent {
    color: #22d4b8
}

.rc-l {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    font-weight: 600
}

.rc-trend {
    margin-top: 10px;
    font-size: 11px;
    color: rgba(34, 212, 184, .8);
    font-weight: 700
}

.feat-sec {
    background: #fff;
    position: relative;
    overflow: hidden
}

.feat-sec .sh2 {
    color: #0d3333
}

.feat-sec .ssub {
    color: #4a7a7a
}

.feat-sec .stag {
    background: rgba(26, 128, 128, .07);
    border-color: rgba(26, 128, 128, .18);
    color: #1a8080
}

.fg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.fcard {
    border-radius: 20px;
    padding: 32px 28px;
    background: #f8fcfc;
    border: 1.5px solid #e0eeee;
    transition: all .4s cubic-bezier(.23, 1, .32, 1);
    cursor: default;
    position: relative;
    overflow: hidden
}

.fcard::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 212, 184, .18) 0%, transparent 70%);
    transition: transform .5s cubic-bezier(.23, 1, .32, 1), opacity .5s;
    opacity: 0;
    pointer-events: none
}

.fcard::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a8080, #22d4b8, #1a8080);
    transform: scaleX(0);
    transform-origin: center;
    border-radius: 0 0 4px 4px;
    transition: transform .4s cubic-bezier(.23, 1, .32, 1)
}

.fcard:hover {
    transform: translateY(-8px);
    background: #fff;
    border-color: rgba(26, 128, 128, .35);
    box-shadow:
        0 0 0 4px rgba(34, 212, 184, .08),
        0 0 40px rgba(26, 128, 128, .15),
        0 20px 50px rgba(26, 128, 128, .1)
}

.fcard:hover::before {
    transform: scale(2.2);
    opacity: 1
}

.fcard:hover::after {
    transform: scaleX(1)
}

.fi {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all .4s
}

.fi.tl {
    background: rgba(26, 128, 128, .1);
    color: #1a8080;
    border: 1px solid rgba(26, 128, 128, .15)
}

.fcard:hover .fi.tl {
    background: linear-gradient(135deg, #1a8080, #22a6a6);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(26, 128, 128, .35)
}

.ft {
    font-size: 16px;
    font-weight: 800;
    color: #0d3333;
    margin-bottom: 8px;
    transition: color .3s
}

.fcard:hover .ft {
    color: #1a8080
}

.fd {
    font-size: 13px;
    color: #4a7a7a;
    line-height: 1.7
}



.mb2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 90px
}

.mb2:last-child {
    margin-bottom: 0
}

.mb2.rev {
    direction: ltr
}

.mb2.rev>* {
    direction: rtl
}

.mtag {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    border: 1px solid
}

.mt-tl {
    background: rgba(26, 128, 128, .08);
    color: #1a8080;
    border-color: rgba(26, 128, 128, .18)
}

.mt-pu {
    background: rgba(124, 58, 237, .08);
    color: #7c3aed;
    border-color: rgba(124, 58, 237, .2)
}

.mt-am {
    background: rgba(217, 119, 6, .08);
    color: #b45309;
    border-color: rgba(217, 119, 6, .2)
}

.mod-title {
    font-size: 36px;
    font-weight: 900;
    color: #0d3333;
    line-height: 1.22;
    margin-bottom: 12px
}

.mod-desc {
    font-size: 15px;
    color: #4a7a7a;
    line-height: 1.7;
    margin-bottom: 24px
}

.mlist {
    list-style: none
}

.mlist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(26, 128, 128, .07);
    font-size: 14px;
    font-weight: 700;
    color: #0d3333;
    transition: all .3s
}

.mlist li:hover {
    color: #1a8080;
    padding-right: 6px
}

.mlic {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(26, 128, 128, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    transition: all .3s
}

.mlist li:hover .mlic {
    background: #1a8080;
    color: #fff
}

.mv {
    border-radius: 22px;
    padding: 28px;
    position: relative
}

.mv-tl {
    background: linear-gradient(135deg, #0a3a3a, #0d5454)
}

.mv-pu {
    background: linear-gradient(135deg, #4c1d95, #7c3aed)
}

.mv-am {
    background: linear-gradient(135deg, #78350f, #b45309)
}

.mvc {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    padding: 18px
}

.mvc-bar {
    height: 7px;
    background: rgba(255, 255, 255, .28);
    border-radius: 3px;
    margin-bottom: 14px;
    width: 55%
}

.hr-circle-wrap {
    display: flex;
    justify-content: center;
    margin: 16px 0
}

.hr-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, .15);
    border-top-color: #22d4b8;
    border-right-color: #22d4b8;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spinSlow 6s linear infinite
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg)
    }
}

.hr-ring-inner {
    animation: spinSlow 6s linear infinite reverse;
    text-align: center
}

.hr-ring-val {
    font-size: 14px;
    font-weight: 900;
    color: #22d4b8
}

.hr-ring-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, .6)
}

.emp-row {
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px
}

.er-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34d399;
    flex-shrink: 0
}

.er-ln {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .25);
    border-radius: 3px
}

.er-ci {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(124, 58, 237, .45);
    flex-shrink: 0
}

.barchart {
    display: flex;
    gap: 7px;
    align-items: flex-end;
    height: 90px;
    padding: 8px 0
}

.bcb {
    flex: 1;
    border-radius: 5px 5px 0 0;
    background: rgba(255, 255, 255, .3)
}

.bcs {
    display: flex;
    justify-content: space-between;
    margin-top: 10px
}

.bcsn {
    text-align: center
}

.bcs-n {
    font-size: 18px;
    font-weight: 900;
    color: #fff
}

.bcs-l {
    font-size: 10px;
    color: rgba(255, 255, 255, .65)
}

.inv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px
}

.inv-cell {
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 10px 7px
}

.ibar {
    height: 5px;
    border-radius: 2px;
    margin-bottom: 4px
}

.ibar.r {
    background: #f87171;
    width: 15%
}

.ibar.y {
    background: #22d4b8;
    width: 45%
}

.ibar.g {
    background: #34d399;
    width: 85%
}

.ibar.g2 {
    background: #34d399;
    width: 90%
}

.ibar.y2 {
    background: #22d4b8;
    width: 30%
}

.ibar.g3 {
    background: #34d399;
    width: 70%
}

.ipct {
    font-size: 9px;
    color: rgba(255, 255, 255, .65);
    font-weight: 700
}

.ai-pill {
    position: absolute;
    bottom: -14px;
    left: 22px;
    background: linear-gradient(135deg, #ffffff);
    color: rgba(217, 119, 6, .8);

    padding: 7px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(26, 128, 128, .4);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: aip 2s ease infinite
}

@keyframes aip {

    0%,
    100% {
        box-shadow: 0 8px 22px rgba(26, 128, 128, .4)
    }

    50% {
        box-shadow: 0 8px 30px rgba(34, 212, 184, .6)
    }
}

.mcta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 11px 22px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    border: none;
    cursor: default;
    transition: all .3s
}

.mcta-tl {
    background: #1a8080;
    color: #fff
}

.mcta-tl:hover {
    background: #0d5454;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(26, 128, 128, .35)
}

.mcta-pu {
    background: #7c3aed;
    color: #fff
}

.mcta-pu:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(124, 58, 237, .35)
}

.mcta-am {
    background: #b45309;
    color: #fff
}

.mcta-am:hover {
    background: #92400e;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(180, 83, 9, .35)
}

.loy-sec {
    background: #f5fbfb;
    position: relative;
    overflow: hidden
}

.loy-sec::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 212, 184, .07), transparent 60%);
    pointer-events: none
}

.loy-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.mw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a8080, #22a6a6);
    color: #fff;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(26, 128, 128, .25);
    animation: bnc 3s ease infinite alternate
}

.loy-sec .sh2-loy {
    font-size: 40px;
    font-weight: 900;
    color: #0d3333;
    line-height: 1.2;
    margin-bottom: 16px
}

.loy-sec .sh2-loy span {
    color: #1a8080
}

.loy-sec .loy-desc {
    font-size: 15px;
    color: #4a7a7a;
    line-height: 1.75;
    margin-bottom: 28px
}

.lf-list {
    list-style: none
}

.lf-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 14px;
    margin-bottom: 6px;
    border-radius: 14px;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .5s ease, transform .5s ease, background .3s, border-color .3s, box-shadow .3s
}

.lf-item.in {
    opacity: 1;
    transform: translateX(0)
}

.lf-item:nth-child(1) {
    transition-delay: .1s
}

.lf-item:nth-child(2) {
    transition-delay: .25s
}

.lf-item:nth-child(3) {
    transition-delay: .4s
}

.lf-item:nth-child(4) {
    transition-delay: .55s
}

.lf-item:hover {
    background: #fff;
    border-color: rgba(26, 128, 128, .12);
    box-shadow: 0 8px 28px rgba(26, 128, 128, .08)
}

.lf-ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(26, 128, 128, .08), rgba(34, 212, 184, .08));
    border: 1px solid rgba(26, 128, 128, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .35s
}

.lf-item:hover .lf-ic {
    background: linear-gradient(135deg, #1a8080, #22a6a6);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(26, 128, 128, .3);
    transform: scale(1.1) rotate(-5deg)
}

.lf-ic svg {
    fill: #1a8080;
    transition: fill .3s
}

.lf-item:hover .lf-ic svg {
    fill: #fff
}

.lf-t {
    font-size: 14px;
    font-weight: 800;
    color: #0d3333;
    margin-bottom: 4px;
    transition: color .3s
}

.lf-item:hover .lf-t {
    color: #1a8080
}

.lf-d {
    font-size: 12px;
    color: #4a7a7a;
    line-height: 1.65
}

.loy-cta-btn {
    background: linear-gradient(135deg, #1a8080, #22a6a6) !important;
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(26, 128, 128, .3) !important
}

.loy-card-wrap {
    display: flex;
    justify-content: center
}

.loy-card {
    width: 280px;
    background: #7B3F10;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 70px rgba(123, 63, 16, .35);
    animation: cardFloat 5s ease-in-out infinite
}

@keyframes cardFloat {

    0%,
    100% {
        transform: perspective(800px) rotateY(0deg) translateY(0)
    }

    33% {
        transform: perspective(800px) rotateY(8deg) translateY(-12px)
    }

    66% {
        transform: perspective(800px) rotateY(-6deg) translateY(-8px)
    }
}

.lc-hd {
    background: rgba(0, 0, 0, .2);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.lc-brand {
    font-size: 15px;
    font-weight: 900;
    color: #fff
}

.lc-type {
    font-size: 10px;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: 1px
}

.lc-hero-area {
    height: 140px;
    background: linear-gradient(135deg, #3d2010, #7b3f10);
    display: flex;
    align-items: flex-end;
    padding: 14px
}

.lc-pts {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1
}

.lc-pts-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .7)
}

.lc-body {
    padding: 16px 18px
}

.lc-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px
}

.lc-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1px
}

.lc-val {
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.lc-qr {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    text-align: center
}

.lc-qr-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background:
        linear-gradient(45deg, #1a1a1a 25%, transparent 25%) -8px 0,
        linear-gradient(-45deg, #1a1a1a 25%, transparent 25%) -8px 0,
        linear-gradient(45deg, transparent 75%, #1a1a1a 75%),
        linear-gradient(-45deg, transparent 75%, #1a1a1a 75%);
    background-size: 8px 8px;
    background-color: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 4px
}

.lc-qr-name {
    font-size: 10px;
    color: #333;
    margin-top: 5px;
    font-weight: 700
}

.ls {
    background: linear-gradient(135deg, #0d5454, #1a8080);
    padding: 56px 40px
}

.ls-in {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.lsc {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all .4s;
    position: relative;
    overflow: hidden;
    cursor: default
}

.lsc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 212, 184, .1), transparent);
    opacity: 0;
    transition: opacity .4s
}

.lsc:hover {
    background: rgba(255, 255, 255, .18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
    transform: translateY(-6px)
}

.lsc:hover::before {
    opacity: 1
}

.lsc-icon svg path {
    fill: #22d4b8;

}

.lsc:hover .lsc-icon svg path {
    fill: #fff;
    transition: fill 0.3s ease;
}

.lsc-icon {

    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    transition: transform .4s
}

.lsc:hover .lsc-icon {
    transform: scale(1.15) rotate(-5deg);
}

.lsc-n {
    font-size: 50px;
    font-weight: 900;
    color: #22d4b8;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(34, 212, 184, .3)
}

.lsc-l {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    margin-top: 8px;
    font-weight: 500
}

.lsc-bar {
    height: 2px;
    background: rgba(255, 255, 255, .15);
    border-radius: 1px;
    margin-top: 16px;
    overflow: hidden
}

.lsc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #22d4b8, rgba(34, 212, 184, .4));
    border-radius: 1px;
    animation: barSweep 2.5s ease-in-out infinite alternate
}

.lsc-n {
    font-size: 42px;
    font-weight: 900;
    color: #22d4b8;
    line-height: 1;
    text-shadow: 0 4px 14px rgba(34, 212, 184, .3)
}

.lsc-l {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    margin-top: 6px
}

.sys-sec {
    background: #fff
}

.sys-sec .sh2 {
    color: #0d3333
}

.sys-sec .ssub {
    color: #4a7a7a
}

.sys-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.sysc {
    background: #f5fbfb;
    border: 1px solid #e0eeee;
    border-radius: 18px;
    padding: 30px;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    cursor: default
}

.sysc:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(26, 128, 128, .12);
    border-color: #22a6a6
}

.sysc-ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1a8080, #22a6a6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(26, 128, 128, .3)
}

.sysc-t {
    font-size: 17px;
    font-weight: 800;
    color: #0d3333;
    margin-bottom: 8px
}

.sysc-d {
    font-size: 13px;
    color: #4a7a7a;
    line-height: 1.65;
    margin-bottom: 14px
}

.sysc-ul {
    list-style: none
}

.sysc-ul li {
    font-size: 12px;
    color: #4a7a7a;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px
}

.sysc-ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22a6a6;
    flex-shrink: 0
}

.test-sec {
    background: #fff
}

.tgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto
}

.tcard {
    background: #f5fbfb;
    border-radius: 22px;
    padding: 32px;
    border: 1px solid #e0eeee;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
    cursor: default
}

.tcard::before {
    content: "\201C";
    position: absolute;
    top: -8px;
    left: 20px;
    font-size: 130px;
    font-weight: 900;
    color: rgba(26, 128, 128, .05);
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
    transition: color .4s, transform .4s
}

.tcard::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a8080, #22a6a6);
    opacity: 0;
    transition: opacity .4s;
    border-radius: 22px;
    z-index: 0
}

.tcard:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 32px 70px rgba(26, 128, 128, .18);
    border-color: transparent
}

.tcard:hover::after {
    opacity: 1
}

.tcard:hover::before {
    color: rgba(255, 255, 255, .12);
    transform: scale(1.1)
}

.tcard:hover .t-stars {
    color: #22d4b8
}

.tcard:hover .t-txt {
    color: rgba(255, 255, 255, .88)
}

.tcard:hover .ta-n {
    color: #fff
}

.tcard:hover .ta-r {
    color: rgba(255, 255, 255, .6)
}

.tcard:hover .ta-av {
    background: rgba(255, 255, 255, .2);
    color: #fff
}

.tcard>* {
    position: relative;
    z-index: 1
}

.t-stars {
    color: #22d4b8;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    transition: color .4s
}

.t-txt {
    font-size: 15px;
    color: #4a7a7a;
    line-height: 1.75;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    transition: color .4s
}

.t-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1
}

.ta-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a8080, #22a6a6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    transition: all .4s;
    box-shadow: 0 4px 14px rgba(26, 128, 128, .3)
}

.ta-n {
    font-size: 14px;
    font-weight: 800;
    color: #0d3333;
    transition: color .4s
}

.ta-r {
    font-size: 11px;
    color: #4a7a7a;
    transition: color .4s
}

.tcard.wide {
    grid-column: 1/-1
}

.cta2 {
    background: linear-gradient(160deg, #081e1e 0%, #0a2828 35%, #062020 70%, #071818 100%);
    padding: 120px 40px 100px;
    position: relative;
    overflow: hidden
}

.cta2::before {
    content: '';
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(34, 212, 184, .14) 0%, rgba(26, 128, 128, .07) 45%, transparent 72%);
    animation: ctaGlow 7s ease-in-out infinite;
    pointer-events: none;
    z-index: 0
}

.cta2::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(26, 128, 128, .12) 0%, transparent 65%);
    animation: ctaGlow 9s ease-in-out 2s infinite reverse;
    pointer-events: none;
    z-index: 0
}

@keyframes ctaGlow {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: .7
    }

    50% {
        transform: translateX(-50%) scale(1.18);
        opacity: 1
    }
}

.cta2-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 212, 184, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 212, 184, .035) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
    z-index: 0;
    animation: gridDrift 25s linear infinite
}

@keyframes gridDrift {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 55px 55px
    }
}

.cta2-sparks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden
}

.cta2-spark {
    position: absolute;
    border-radius: 50%;
    background: #22d4b8;
    animation: sparkFloat linear infinite
}

@keyframes sparkFloat {
    0% {
        transform: translateY(100%) scale(0);
        opacity: 0
    }

    10% {
        opacity: .6
    }

    90% {
        opacity: .1
    }

    100% {
        transform: translateY(-120px) scale(1.2);
        opacity: 0
    }
}

.cta2-in {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1
}

.c2-title {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 16px
}

.c2-title span {
    color: #22d4b8;
    display: block
}

.c2-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 28px;
    line-height: 1.7
}

.c2-cks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto 32px
}

.c2c {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #fff
}

.c2ck {
    width: 20px;
    height: 20px;
    background: rgba(34, 212, 184, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    color: #22d4b8
}

.c2-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}

.c2-note {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, .5)
}

.c2-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none
}

.c2-wave svg {
    display: block;
    width: 100%
}

.mod-sec {
    background: linear-gradient(180deg, #f5fbfb 0%, #eef7f7 100%)
}

.mod-wave-sep {
    position: relative;
    margin: 30px -40px 60px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center
}

.mod-wave-sep svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.wave-path-1 {
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
    animation: waveDriftStroke 6s ease-in-out infinite
}

.wave-path-2 {
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
    animation: waveDriftStroke 8s ease-in-out infinite reverse
}

@keyframes waveDriftStroke {

    0%,
    100% {
        stroke-dashoffset: 0
    }

    50% {
        stroke-dashoffset: 400
    }
}

.mod-wave-label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1), 0 0 0 1px rgba(255, 255, 255, .9);
    animation: labelFloat 4s ease-in-out infinite
}

@keyframes labelFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.mod-wave-tl {
    background: rgba(255, 255, 255, .95);
    color: #1a8080;
    border: 1.5px solid rgba(26, 128, 128, .22)
}

.mod-wave-tl svg {
    fill: #1a8080
}

.mod-wave-am {
    background: rgba(255, 255, 255, .95);
    color: #b45309;
    border: 1.5px solid rgba(217, 119, 6, .22)
}

.mod-wave-am svg {
    fill: #b45309
}

@keyframes ctaTitleIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(.92);
        filter: blur(8px);
    }

    70% {
        opacity: 1;
        transform: translateY(-4px) scale(1.01);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ctaWordGlow {

    0%,
    100% {
        text-shadow: 0 0 40px rgba(34, 212, 184, .5), 0 0 80px rgba(34, 212, 184, .2);
    }

    50% {
        text-shadow: 0 0 70px rgba(34, 212, 184, .85), 0 0 140px rgba(34, 212, 184, .35);
    }
}

@keyframes ctaSpanSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 8px;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: normal;
    }
}

@keyframes ctaSubIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaChipIn {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.c2-title-anim {
    opacity: 0;
    animation: ctaTitleIn 1s cubic-bezier(.16, 1, .3, 1) .15s forwards
}

.c2-title-anim span {
    opacity: 0;
    display: block;
    animation: ctaSpanSlide .9s cubic-bezier(.16, 1, .3, 1) .85s forwards, ctaWordGlow 3.5s ease-in-out 1.75s infinite
}

.cta2-in .c2-sub {
    opacity: 0;
    animation: ctaSubIn .8s ease .7s forwards
}

.cta2-in .c2c:nth-child(1) {
    opacity: 0;
    animation: ctaChipIn .6s cubic-bezier(.34, 1.56, .64, 1) 1.1s forwards
}

.cta2-in .c2c:nth-child(2) {
    opacity: 0;
    animation: ctaChipIn .6s cubic-bezier(.34, 1.56, .64, 1) 1.25s forwards
}

.cta2-in .c2c:nth-child(3) {
    opacity: 0;
    animation: ctaChipIn .6s cubic-bezier(.34, 1.56, .64, 1) 1.4s forwards
}

.cta2-in .c2c:nth-child(4) {
    opacity: 0;
    animation: ctaChipIn .6s cubic-bezier(.34, 1.56, .64, 1) 1.55s forwards
}


#stt {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 46px;
    height: 46px;
    background: #1a8080;
    border-radius: 50%;
    border: none;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 8px 22px rgba(26, 128, 128, .35);
    opacity: 0;
    transform: translateY(16px);
    transition: all .3s;
    z-index: 999
}

#stt.show {
    opacity: 1;
    transform: none
}

#stt:hover {
    background: #0d5454;
    transform: translateY(-3px)
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(60px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@media(max-width:900px) {

    .hero-main,
    .mb2,
    .loy-in {
        grid-template-columns: 1fr
    }

    .wg,
    .fg,
    .tgrid,
    .ft-top,
    .sys-grid {
        grid-template-columns: 1fr 1fr
    }

    .rg {
        grid-template-columns: 1fr 1fr
    }

    .hg {
        grid-template-columns: 1fr
    }

    .hg::before {
        display: none
    }

    .lo-cks,
    .c2-cks {
        grid-template-columns: 1fr 1fr
    }

    nav {
        padding: 0 20px
    }

    .sec {
        padding: 60px 20px
    }
}

@media(max-width:600px) {

    .wg,
    .fg,
    .tgrid,
    .rg,
    .ft-top,
    .sys-grid {
        grid-template-columns: 1fr
    }

    .lo-cks,
    .c2-cks,
    .hero-main {
        grid-template-columns: 1fr
    }

    .hm {
        display: none
    }

    .tnums {
        flex-direction: column;
        align-items: center;
        gap: 30px
    }

    .tn-item::after {
        display: none
    }
}

@keyframes badgeBob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.sec-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0eeee, transparent);
    margin: 0 40px
}

.mlist-hr {
    list-style: none
}

.mlist-hr li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #4a2891;
    background: #d1c4e9;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .5s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s
}

.mlist-hr li.in {
    opacity: 1;
    transform: translateX(0)
}

.mlist-hr li:nth-child(1) {
    transition-delay: .0s
}

.mlist-hr li:nth-child(2) {
    transition-delay: .18s
}

.mlist-hr li:nth-child(3) {
    transition-delay: .36s
}

.mlist-hr li:nth-child(4) {
    transition-delay: .54s
}

.mlist-hr li:hover {
    box-shadow: 0 6px 20px rgba(124, 58, 237, .2);
    transform: translateX(-4px) !important
}

.mlic-pu {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(124, 58, 237, .15);
    border: 1px solid rgba(124, 58, 237, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s
}

.mlic-pu svg {
    fill: #7c3aed;
    transition: fill .3s
}

.mlist-hr li:hover .mlic-pu {
    background: #7c3aed;
    border-color: #7c3aed
}

.mlist-hr li:hover .mlic-pu svg {
    fill: #fff
}

.hr-img-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: center
}

.hr-img-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(124, 58, 237, .35) 0%, rgba(124, 58, 237, .12) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: .7;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1)
    }
}

.hr-img-wrap img {
    position: relative;
    z-index: 1
}

.acc-dashboard {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
    border: 1px solid #e0eeee;
    overflow: hidden;
    max-width: 460px;
    width: 100%
}

.acc-dash-header {
    background: linear-gradient(135deg, #0d5454, #1a8080);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px
}

.acc-win-dots {
    display: flex;
    gap: 6px
}

.acc-win-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block
}

.acc-dash-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    flex: 1;
    text-align: right
}

.acc-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid #eef5f5
}

.acc-metric {
    padding: 18px 16px;
    text-align: center;
    border-left: 1px solid #eef5f5
}

.acc-metric:last-child {
    border-left: none
}

.acc-m-lbl {
    font-size: 11px;
    color: #7aacac;
    margin-bottom: 6px
}

.acc-m-val {
    font-size: 20px;
    font-weight: 900;
    color: #0d3333;
    line-height: 1
}

.acc-m-chg {
    font-size: 11px;
    color: #4a7a7a;
    margin-top: 4px;
    font-weight: 600
}

.acc-m-chg.pos {
    color: #1a8080
}

.acc-chart-box {
    padding: 16px 20px;
    border-bottom: 1px solid #eef5f5;
    background: #f9fdfd
}

.acc-chart-title {
    font-size: 11px;
    color: #7aacac;
    margin-bottom: 10px;
    text-align: right
}

.acc-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px
}

.acc-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    height: 100%
}

.acc-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    transition: height .8s cubic-bezier(.34, 1.56, .64, 1)
}

.acc-bar-lbl {
    font-size: 9px;
    color: #7aacac
}

.acc-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid #eef5f5
}

.acc-row-item:last-child {
    border-bottom: none
}

.acc-row-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.acc-row-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700
}

.acc-row-name {
    font-size: 13px;
    font-weight: 700;
    color: #0d3333
}

.acc-row-sub {
    font-size: 10px;
    color: #7aacac
}

.acc-row-val {
    font-size: 15px;
    font-weight: 800
}

.inv-sm-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 10px 12px;
    transition: all .3s
}

.inv-sm-row:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateX(-4px)
}

.inv-sm-icon {
    font-size: 22px;
    flex-shrink: 0
}

.inv-sm-info {
    flex: 1
}

.inv-sm-name {
    font-size: 11px;
    font-weight: 600;
    color: #fff
}

.inv-sm-sku {
    font-size: 9px;
    color: rgba(255, 255, 255, .45)
}

.inv-sm-right {
    text-align: left;
    min-width: 50px
}

.inv-sm-qty {
    font-size: 13px;
    font-weight: 700;
    text-align: left
}

.inv-sm-bar-w {
    height: 3px;
    background: rgba(255, 255, 255, .1);
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden
}

.inv-sm-bar-f {
    height: 100%;
    border-radius: 2px
}

.lsc {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.lsc:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2)
}

.lsc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 212, 184, .08), transparent);
    opacity: 0;
    transition: opacity .4s
}

.lsc:hover::before {
    opacity: 1
}

.lsc-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .2))
}

.lsc-n {
    font-size: 50px;
    font-weight: 900;
    color: #22d4b8;
    line-height: 1;
    text-shadow: 0 0 30px rgba(34, 212, 184, .3);
    letter-spacing: -2px
}

.lsc-l {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    margin-top: 8px
}

.lsc-bar {
    height: 3px;
    background: rgba(255, 255, 255, .1);
    border-radius: 2px;
    margin-top: 14px;
    overflow: hidden
}

.lsc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #22d4b8, rgba(34, 212, 184, .3));
    border-radius: 2px;
    animation: barSweep 2.5s ease-in-out infinite alternate
}

.hero-pos-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: center
}

.hero-pos-img {
    width: 100%;
    border-radius: 22px;
    animation: hfl 4s ease-in-out infinite;
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .35))
}

@keyframes cardFloat {

    0%,
    100% {
        transform: perspective(800px) rotateY(0deg) translateY(0)
    }

    33% {
        transform: perspective(800px) rotateY(6deg) translateY(-14px)
    }

    66% {
        transform: perspective(800px) rotateY(-5deg) translateY(-10px)
    }
}

.sb-pfx {

    font-size: 37px;
    font-weight: bold;
    margin-left: 2px;

}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.w {
    background: none !important;

    padding: 3rem 2rem;
    direction: rtl;
    font-family: inherit;
    text-align: center;
    max-width: 860px;
    margin: 0 auto
}


.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EEEDFE;
    color: #3C3489;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #534AB7
}

.ttl {
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 3rem;
    line-height: 1.3
}

.ttl em {
    color: #007F80;
    font-style: normal
}


.card {
    min-width: 100%;
    padding: 0 1rem;
    direction: rtl;
    text-align: right
}


.testimonials-wrapper-main {
    background: #fff;
    padding: 90px 40px;
    position: relative;
    z-index: 1;
    width: 100%;
    clear: both;
}

.testimonials-inner-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EEEDFE;
    color: #3C3489;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.testimonials-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #007F80;
}

.testimonials-main-title {
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.testimonials-main-title em {
    color: #007F80;
    font-style: normal;
}

.testimonials-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-single-card {
    background: #fff;
    border: 1px solid #e5e5f0;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    text-align: right;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-single-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00C8C9, #007F80);
    border-radius: 24px 0 0 24px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-single-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(83, 74, 183, 0.15);
    border-color: #007F80;
}

.testimonial-single-card:hover::before {
    transform: scaleY(1);
}

.testimonial-quote-mark {
    font-size: 80px;
    color: #EEEDFE;
    line-height: 1;
    font-family: Georgia, serif;
    position: absolute;
    top: 20px;
    left: 30px;
    user-select: none;
    transition: all 0.4s ease;
}

.testimonial-single-card:hover .testimonial-quote-mark {
    color: #D6D2F7;
    transform: scale(1.1);
}

.testimonial-stars-row {
    display: flex;
    gap: 4px;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.testimonial-stars-row span {
    color: #EF9F27;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.testimonial-single-card:hover .testimonial-stars-row span {
    animation: testimonialsStarPop 0.4s ease forwards;
}

.testimonial-single-card:hover .testimonial-stars-row span:nth-child(1) {
    animation-delay: 0s;
}

.testimonial-single-card:hover .testimonial-stars-row span:nth-child(2) {
    animation-delay: 0.05s;
}

.testimonial-single-card:hover .testimonial-stars-row span:nth-child(3) {
    animation-delay: 0.1s;
}

.testimonial-single-card:hover .testimonial-stars-row span:nth-child(4) {
    animation-delay: 0.15s;
}

.testimonial-single-card:hover .testimonial-stars-row span:nth-child(5) {
    animation-delay: 0.2s;
}

@keyframes testimonialsStarPop {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.testimonial-message-text {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    position: relative;
    z-index: 1;
    margin-bottom: 1.8rem;
    transition: color 0.3s ease;
}

.testimonial-single-card:hover .testimonial-message-text {
    color: #333;
}

.testimonial-author-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 1.2rem;
    border-top: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.testimonial-author-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00C8C9, #007F80);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(83, 74, 183, 0.3);
}

.testimonial-single-card:hover .testimonial-author-circle {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(83, 74, 183, 0.4);
}

.testimonial-author-info {
    flex: 1;
    text-align: right;
}

.testimonial-author-fullname {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.testimonial-single-card:hover .testimonial-author-fullname {
    color: #007F80;
}

.testimonial-author-position {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .testimonials-cards-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .testimonials-wrapper-main {
        padding: 60px 20px;
    }

    .testimonials-cards-grid {
        gap: 1.5rem;
        padding: 0;
    }

    .testimonial-single-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-quote-mark {
        font-size: 60px;
        top: 15px;
        left: 20px;
    }
}