.sectors-sect {
    padding: 80px 60px;
    background: var(--bg);
    text-align: center;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 860px;
    margin: 0 auto 40px;
}

.sector-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 24px 20px;
    transition: all .3s cubic-bezier(.22, 1, .36, 1);
}

.sector-pill:hover {
    border-color: rgba(0, 168, 150, .35);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 168, 150, .1);
}

.sector-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.sector-pill:hover .sector-ico {
    transform: scale(1.18) rotate(-8deg);
}

.sector-ico svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke-width: 1.8;
}

.sector-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
}

.sectors-cta {
    max-width: 780px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark), #1a4040);
    border-radius: 24px;
    padding: 36px 44px;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
    text-align: right;
}

.sectors-cta::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 168, 150, .18) 0%, transparent 60%);
    top: -80px;
    right: -60px;
    border-radius: 50%;
    pointer-events: none;
}

.sectors-cta-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.sectors-cta-text h3 {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
}

.sectors-cta-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
}

.sectors-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.sec-btn-pri {
    padding: 12px 26px;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 168, 150, .4);
}

.sec-btn-ghost {
    padding: 12px 26px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .4);
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

@media(max-width:1100px) {
    .sectors-sect {
        padding-left: 24px;
        padding-right: 24px;
    }

    .sectors-cta {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }

    .sectors-cta-btns {
        width: 100%;
    }

    .sec-btn-pri,
    .sec-btn-ghost {
        width: 100%;
    }
}

:root {
    --teal: #00A896;
    --teal2: #007F80;
    --teal3: #05C4B0;
    --dark: #103232;
    --dark2: #0C2A2A;
    --ink: #05141f;
    --muted: #4A7A80;
    --light: #E6F7F6;
    --white: #ffffff;
    --bg: #F0FAFA;
    --border: rgba(0, 168, 150, 0.15);

}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--white);
    color: var(--ink);
    direction: rtl;
    overflow-x: hidden
}

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

.shape {
    position: absolute;
    opacity: .07
}

.shape-circle {
    border-radius: 50%;
    border: 2px solid var(--teal)
}

.shape-ring {
    border-radius: 50%;
    border: 1.5px solid var(--teal2)
}

.shape-line {
    background: var(--teal);
    height: 1.5px;
    transform-origin: left center
}

.shape-diamond {
    border: 1.5px solid var(--teal3);
    transform: rotate(45deg)
}

@keyframes floatUp {

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

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

@keyframes floatDown {

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

    50% {
        transform: translateY(20px)
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes pulseScale {

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

    50% {
        transform: scale(1.15)
    }
}

@keyframes driftRight {

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

    50% {
        transform: translateX(18px)
    }
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fafa 40%, #e6f7f6 100%);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 20px 60px 80px
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 168, 150, .1);
    border: 1px solid rgba(0, 168, 150, .25);
    color: var(--teal2);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2
}

.hero-title {
    font-size: clamp(30px, 4.3vw, 50px);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 14px
}

.hero-title .accent {
    color: var(--teal)
}

.hero-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 6px
}

.hero-subtitle {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px
}

.hero-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: right;
}

.btn-pri {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(0, 168, 150, .25)
}

.btn-pri:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 168, 150, .35)
}

.btn-ol {
    padding: 14px 32px;
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: all .3s
}

.btn-ol:hover {
    background: var(--light)
}

.hstats {
    display: flex;
    background: rgba(0, 168, 150, .05);
    border: 1px solid rgba(0, 168, 150, .15);
    border-radius: 16px;
    overflow: hidden
}

.hstat {
    flex: 1;
    padding: 16px 18px;
    text-align: center;
    border-left: 1px solid rgba(0, 168, 150, .12)
}

.hstat:last-child {
    border-left: none
}

.hstat-num {
    font-size: 26px;
    font-weight: 900;
    color: var(--teal2);
    letter-spacing: -1px
}

.hstat-lbl {
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px
}

.hero-visual {
    animation: fadeLeft .9s .2s both;
    position: relative;
    z-index: 1
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

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

.dc {
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 16px 50px rgba(0, 168, 150, .06), 0 4px 12px rgba(0, 0, 0, .04);
    border: 1.5px solid var(--border);
    animation: floatCard 6s ease-in-out infinite;
    max-width: 100%
}

@keyframes floatCard {

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

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

.mac-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 12px
}

.md {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.md.r {
    background: #ff5f56
}

.md.y {
    background: #ffbd2e
}

.md.g {
    background: #27c93f
}

.dc-ttl {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    text-align: center;
    margin-bottom: 1px
}

.dc-sub {
    font-size: 10px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 12px
}

.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px
}

.dbox {
    border-radius: 10px;
    padding: 10px;
    text-align: center
}

.dbox.a {
    background: rgba(0, 168, 150, .08);
    border: 1px solid rgba(0, 168, 150, .2)
}

.dbox.b {
    background: rgba(5, 196, 176, .08);
    border: 1px solid rgba(5, 196, 176, .2)
}

.dbox svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
    margin: 0 auto 4px;
    display: block
}

.dbox-lbl {
    font-size: 9px;
    color: var(--muted)
}

.dbox-val {
    font-size: 18px;
    font-weight: 900;
    color: var(--teal2)
}

.sbox {
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    color: #fff
}

.sbox-lbl {
    font-size: 9px;
    opacity: .8;
    margin-bottom: 2px
}

.sbox-val {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.5px
}

.sbox-chg {
    font-size: 10px;
    opacity: .85;
    margin-top: 2px
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0
}

.s4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 10px
}

.sb {
    border-radius: 9px;
    padding: 9px
}

.sb.r {
    background: rgba(0, 168, 150, .07);
    border: 1px solid rgba(0, 168, 150, .15)
}

.sb.g {
    background: rgba(5, 196, 176, .07);
    border: 1px solid rgba(5, 196, 176, .15)
}

.sb.y {
    background: rgba(0, 127, 128, .07);
    border: 1px solid rgba(0, 127, 128, .15)
}

.sb.b {
    background: rgba(0, 168, 150, .05);
    border: 1px solid rgba(0, 168, 150, .12)
}

.sb-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px
}

.sb-ico svg {
    width: 11px;
    height: 11px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2
}

.sb-lbl {
    font-size: 9px;
    color: var(--muted)
}

.sb-val {
    font-size: 15px;
    font-weight: 900;
    color: var(--ink)
}

.sb-chg {
    font-size: 9px;
    color: var(--teal);
    font-weight: 700
}

.sec-ttl {
    font-size: 11px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 7px
}

.ords {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.ord {
    background: var(--bg);
    border-radius: 7px;
    padding: 7px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border)
}

.ord-nm {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink)
}

.ord-mt {
    font-size: 9px;
    color: var(--muted);
    margin-top: 1px
}

.ord-r {
    display: flex;
    align-items: center;
    gap: 5px
}

.ord-pr {
    font-size: 11px;
    font-weight: 900;
    color: var(--teal)
}

.pill {
    padding: 2px 7px;
    border-radius: 40px;
    font-size: 8px;
    font-weight: 800
}

.p-cook {
    background: #FEF3C7;
    color: #92400E
}

.p-new {
    background: var(--light);
    color: var(--teal2)
}

.p-ready {
    background: #DCFCE7;
    color: #166534
}

.section-label {
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    background: var(--light);
    color: var(--teal2);
    border: 1px solid rgba(0, 168, 150, .2);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
    align-items: center
}

.section-label svg {
    width: 14px;
    height: 14px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2
}

.section-title {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px
}

.section-title .accent {
    color: var(--teal)
}

.section-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    text-align: center
}

.sec-head {
    text-align: center;
    margin-bottom: 44px
}

[data-reveal] {
    opacity: 0;
    transition: opacity .6s, transform .6s
}

[data-reveal="left"] {
    transform: translateX(-28px)
}

[data-reveal="right"] {
    transform: translateX(28px)
}

[data-reveal="up"] {
    transform: translateY(28px)
}

[data-reveal="fade"] {
    transform: none
}

[data-reveal="scale"] {
    transform: scale(.95)
}

[data-reveal].in {
    opacity: 1;
    transform: none
}

[data-delay="1"] {
    transition-delay: .1s
}

[data-delay="2"] {
    transition-delay: .2s
}

[data-delay="3"] {
    transition-delay: .3s
}

[data-delay="4"] {
    transition-delay: .4s
}

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

.stat-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    transition: all .4s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px)
}

.stat-card.in {
    opacity: 1;
    transform: translateY(0)
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal3), var(--teal));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 168, 150, .3);
    box-shadow: 0 16px 40px rgba(0, 168, 150, .1)
}

.stat-card:hover::before {
    transform: scaleX(1)
}

.stat-ico {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 18px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s
}

.stat-ico svg {
    width: 26px;
    height: 26px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.8
}

.stat-card:hover .stat-ico {
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    transform: scale(1.1) rotate(-5deg)
}

.stat-card:hover .stat-ico svg {
    stroke: #fff
}

.stat-num {
    font-size: 52px;
    font-weight: 900;
    color: var(--teal2);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 10px
}

.stat-lbl {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px
}

.stat-desc {
    font-size: 13px;
    color: var(--muted)
}

.prob-sect {
    padding: 80px 60px;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden
}

.prob-grid {
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.prob-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 32px 20px;
    text-align: center;
    transition: all .4s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px)
}

.prob-card.in {
    opacity: 1;
    transform: translateY(0)
}

.prob-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal3), var(--teal));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s
}

.prob-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 168, 150, .3);
    box-shadow: 0 12px 32px rgba(0, 168, 150, .08)
}

.prob-card:hover::before {
    transform: scaleX(1)
}

.prob-ico {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s
}

.prob-card:hover .prob-ico {
    transform: scale(1.15) rotate(-5deg)
}

.prob-ico svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke-width: 1.8
}

.prob-title {
    font-size: 15px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 8px
}

.prob-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7
}

.sol-sect {
    margin: 0 clamp(16px, 4vw, 56px) clamp(44px, 6vw, 84px);
    border-radius: 24px;
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 60%, #297777 100%);
    padding: clamp(44px, 6vw, 72px) clamp(24px, 4vw, 56px) !important;
    position: relative;
    overflow: hidden;
    margin-top: 32px
}

.sol-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1
}

.sol-inner::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, .07);
    border-radius: 50%;
    top: -120px;
    left: -80px;
    pointer-events: none
}

.sol-inner::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    bottom: -80px;
    right: 10%;
    pointer-events: none
}

.sol-left h2 {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3
}

.sol-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 24px
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 168, 150, .15);
    border: 1px solid rgba(0, 168, 150, .25);
    color: var(--teal3);
    padding: 7px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700
}

.chip svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.sol-right {
    background: rgba(255, 255, 255, .97);
    border-radius: 20px;
    padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 44px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1)
}

.sol-right:hover {
    transform: translateY(-6px)
}

.sol-ico {
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1)
}

.sol-right:hover .sol-ico {
    transform: scale(1.12) rotate(-6deg)
}

.sol-name {
    font-size: 17px;
    font-weight: 900;
    color: var(--ink);
    text-align: center;
    margin-bottom: 4px
}

.sol-tag {
    font-size: 12px;
    color: var(--teal2);
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700
}

.sol-desc {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 14px
}

.sol-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-bottom: 14px
}

.sol-stat {
    text-align: center
}

.sol-stat-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--teal2)
}

.sol-stat-lbl {
    font-size: 10px;
    color: var(--muted);
    margin-top: 2px
}

.sp {
    margin-bottom: 8px
}

.sp-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px
}

.sp-bg {
    height: 5px;
    background: var(--light);
    border-radius: 40px;
    overflow: hidden
}

.sp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal2), var(--teal3));
    border-radius: 40px;
    transition: width 1.5s
}

.feat-sect {
    padding: 80px 60px;
    background: var(--white);
    position: relative;
    overflow: hidden
}

.feat-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative
}

.feat-card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px 22px;
    border: 1.5px solid var(--border);
    transition: all .45s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px)
}

.feat-card.in {
    opacity: 1;
    transform: translateY(0)
}

.feat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal3), var(--teal));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 168, 150, .08);
    border-color: rgba(0, 168, 150, .28)
}

.feat-card:hover::after {
    transform: scaleX(1)
}

.feat-ico {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform .4s
}

.feat-card:hover .feat-ico {
    transform: scale(1.15) rotate(-5deg)
}

.feat-ico svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke-width: 1.8
}

.feat-title {
    font-size: 15px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 7px
}

.feat-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7
}

.sys-sect {
    padding: 80px 60px;
    background: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden
}

.sys-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 32px;
    padding: 44px;
    box-shadow: 0 20px 60px rgba(0, 168, 150, .07)
}

.mod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 14px
}

.mod-item {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    transition: all .35s;
    cursor: default
}

.mod-item:hover {
    background: var(--light);
    border-color: rgba(0, 168, 150, .35);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 168, 150, .1)
}

.mod-ico {
    width: 44px;
    height: 44px;
    background: var(--light);
    border-radius: 12px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s
}

.mod-item:hover .mod-ico {
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    transform: rotate(-8deg) scale(1.1)
}

.mod-ico svg {
    width: 20px;
    height: 20px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.6;
    transition: stroke .3s
}

.mod-item:hover .mod-ico svg {
    stroke: #fff
}

.mod-name {
    font-size: 12px;
    font-weight: 800;
    color: var(--ink)
}

.extras {
    background: var(--light);
    border: 1.5px solid rgba(0, 168, 150, .2);
    border-radius: 16px;
    padding: 22px;
    margin-top: 16px
}

.extras-ttl {
    font-size: 14px;
    font-weight: 900;
    color: var(--teal2);
    margin-bottom: 14px
}

.extras-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.ext-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--teal2);
    font-weight: 700
}

.chk {
    width: 22px;
    height: 22px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.chk svg {
    width: 11px;
    height: 11px;
    stroke: #fff;
    fill: none;
    stroke-width: 3
}

.tabs-wrap {
    background: var(--white);
    padding: 80px 60px;
    position: relative;
    overflow: hidden
}

.tabs {
    display: flex;
    gap: 4px;
    background: var(--bg);
    padding: 5px;
    border-radius: 16px;
    margin: 0 auto 24px;
    width: fit-content;
    border: 1px solid var(--border)
}

.tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 12px;
    border: none;
    background: transparent;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--muted);
    cursor: pointer;
    transition: all .3s
}

.tab:hover {
    color: var(--teal)
}

.tab.active {
    background: var(--white);
    color: var(--teal);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08)
}

.tab svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2
}

.panel {
    display: none;
    background: var(--bg);
    border-radius: 16px;
    padding: 28px;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    border: 1px solid var(--border)
}

.panel.active {
    display: block;
    animation: panelIn .4s cubic-bezier(.22, 1, .36, 1)
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 16px
}

.dot-live {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {

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

    50% {
        opacity: .5;
        transform: scale(1.4)
    }
}

.panel-ttl {
    font-size: 16px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 20px
}

.o-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.o-row {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s
}

.o-row.vis {
    opacity: 1;
    transform: translateY(0)
}

.o-row:hover {
    border-color: rgba(0, 168, 150, .3);
    box-shadow: 0 4px 16px rgba(0, 168, 150, .06);
    transform: translateX(-4px)
}

.o-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink)
}

.o-meta {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px
}

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

.o-price {
    font-size: 15px;
    font-weight: 900;
    color: var(--teal)
}

.bdg {
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 800
}

.bk {
    background: #FEF3C7;
    color: #92400E
}

.bn {
    background: var(--light);
    color: var(--teal2)
}

.br {
    background: #DCFCE7;
    color: #166534
}

.k-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.k-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s
}

.k-item.vis {
    opacity: 1;
    transform: translateY(0)
}

.k-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink)
}

.k-meta {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px
}

.k-left {
    display: flex;
    align-items: center;
    gap: 8px
}

.pr2 {
    padding: 3px 10px;
    border-radius: 40px;
    font-size: 10px;
    font-weight: 800
}

.prh {
    background: #FEE2E2;
    color: #991B1B
}

.pro {
    background: var(--light);
    color: var(--teal2)
}

.a-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px
}

.a-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: all .4s
}

.a-item.vis {
    opacity: 1;
    transform: translateY(0)
}

.a-val {
    font-size: 22px;
    font-weight: 900;
    color: var(--teal);
    margin-bottom: 4px
}

.a-chg {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--teal)
}

.a-lbl {
    font-size: 12px;
    color: var(--muted)
}

.chart-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px
}

.chart-lbl {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 18px
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px
}

.bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--teal3), var(--teal2));
    transition: height 1s
}

.days {
    display: flex;
    justify-content: space-between;
    margin-top: 8px
}

.days span {
    font-size: 11px;
    color: var(--muted);
    flex: 1;
    text-align: center
}

.split-sect {
    padding: 80px 60px
}

.split-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.s-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light);
    color: var(--teal2);
    border: 1px solid rgba(0, 168, 150, .2);
    padding: 7px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px
}

.s-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2
}

.split-title {
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.5px;
    line-height: 1.25;
    margin-bottom: 16px
}

.split-title span {
    color: var(--teal2)
}

.split-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 28px
}

.f-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px
}

.f-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all .3s
}

.f-item:hover {
    background: var(--light);
    border-color: rgba(0, 168, 150, .3);
    transform: translateX(-4px)
}

.f-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.f-ico svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke-width: 2
}

.f-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 3px
}

.f-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6
}

.split-btns {
    display: flex;
    gap: 12px
}

.btn2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 3px 12px rgba(0, 168, 150, .2)
}

.btn2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 150, .3)
}

.btn3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: var(--teal2);
    border: 2px solid rgba(0, 168, 150, .3);
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all .3s
}

.btn3:hover {
    background: var(--light);
    transform: translateY(-2px)
}

.pos-mockup {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0, 168, 150, .12), 0 4px 12px rgba(0, 0, 0, .06);
    overflow: hidden;
    border: 1.5px solid var(--border)
}

.pos-hdr {
    background: linear-gradient(135deg, var(--teal2), var(--teal));
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    color: #fff
}

.pos-hdr-time {
    font-size: 12px;
    opacity: .8
}

.pos-hdr-title {
    font-size: 13px;
    font-weight: 800
}

.pos-tabs {
    display: flex;
    background: var(--bg);
    overflow-x: auto;
    scrollbar-width: none
}

.pos-tab {
    padding: 9px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all .25s
}

.pos-tab.a {
    color: var(--teal);
    border-bottom-color: var(--teal);
    background: #fff
}

.pos-prods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border)
}

.pos-prod {
    background: #fff;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    transition: background .2s
}

.pos-prod:hover {
    background: var(--light)
}

.pos-pname {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px
}

.pos-pprice {
    font-size: 10px;
    color: var(--teal2);
    font-weight: 800
}

.pos-sum {
    padding: 12px 16px;
    background: var(--bg);
    border-top: 1px solid var(--border)
}

.pos-stitle {
    font-size: 11px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 7px
}

.pos-srow {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--muted);
    margin-bottom: 4px
}

.pos-srow .pr {
    color: var(--teal2);
    font-weight: 700
}

.pos-total {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 900;
    color: var(--teal2);
    border-top: 1px solid var(--border);
    padding-top: 7px;
    margin-top: 3px
}

.pos-pay {
    width: 100%;
    margin-top: 8px;
    padding: 9px;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    color: #fff;
    border: none;
    border-radius: 9px;
    font-family: 'Tajawal', sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer
}

.inv-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 168, 150, .07)
}

.inv-hdr {
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--bg), var(--white))
}

.inv-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink)
}

.inv-live {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 40px;
    background: #DCFCE7;
    color: #166534
}

.inv-s3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border)
}

.is3 {
    padding: 14px;
    text-align: center;
    border-left: 1px solid var(--border)
}

.is3:last-child {
    border-left: none
}

.is3-num {
    font-size: 24px;
    font-weight: 900
}

.is3-lbl {
    font-size: 10px;
    color: var(--muted);
    margin-top: 2px
}

.is3.re .is3-num {
    color: #DC2626
}

.is3.ye .is3-num {
    color: #D97706
}

.is3.gr .is3-num {
    color: var(--teal)
}

.inv-body {
    padding: 0 16px 16px
}

.inv-row {
    padding: 12px 0;
    border-bottom: 1px solid var(--border)
}

.inv-row:last-child {
    border-bottom: none
}

.inv-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px
}

.inv-info {
    text-align: right
}

.inv-name {
    font-size: 12px;
    font-weight: 800;
    color: var(--ink)
}

.inv-cat {
    font-size: 10px;
    color: var(--muted);
    margin-top: 1px
}

.inv-ri {
    display: flex;
    align-items: center;
    gap: 6px
}

.inv-units {
    font-size: 10px;
    font-weight: 600;
    color: var(--muted)
}

.inv-tag {
    padding: 2px 8px;
    border-radius: 40px;
    font-size: 9px;
    font-weight: 700
}

.it-ok {
    background: #DCFCE7;
    color: #166534
}

.it-low {
    background: #FEE2E2;
    color: #991B1B
}

.it-soon {
    background: #FEF3C7;
    color: #92400E
}

.inv-bar-bg {
    height: 4px;
    background: var(--bg);
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 6px
}

.inv-bar-fill {
    height: 100%;
    border-radius: 40px;
    transition: width 1.5s
}

.inv-pills {
    display: flex;
    gap: 4px;
    flex-wrap: wrap
}

.inv-pill {
    padding: 2px 7px;
    background: var(--light);
    color: var(--teal2);
    border-radius: 40px;
    font-size: 9px;
    font-weight: 700
}

.adv-sect {
    padding: 80px 60px
}

.adv-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.adv-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 26px 18px;
    text-align: center;
    transition: all .4s;
    opacity: 0;
    transform: translateY(16px)
}

.adv-card.in {
    opacity: 1;
    transform: translateY(0)
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 168, 150, .08);
    border-color: rgba(0, 168, 150, .28)
}

.adv-ico {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s
}

.adv-card:hover .adv-ico {
    transform: scale(1.1) rotate(-5deg)
}

.adv-ico svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke-width: 1.8
}

.dark-sect {
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--dark2), var(--dark));
    position: relative;
    overflow: hidden
}

.dark-sect::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 168, 150, .1) 0%, transparent 60%);
    pointer-events: none
}

.d3 {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.d3-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 26px 18px;
    text-align: center;
    transition: all .35s
}

.d3-card:hover {
    background: rgba(0, 168, 150, .12);
    border-color: rgba(0, 168, 150, .3)
}

.d3-ico {
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 150, .15);
    border-radius: 14px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.d3-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal3);
    fill: none;
    stroke-width: 2
}

.d3-card h4 {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px
}

.d3-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, .5)
}

.btn-ghost {
    padding: 13px 36px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .25);
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all .3s;
    backdrop-filter: blur(8px)
}

.btn-ghost:hover {
    background: rgba(0, 168, 150, .2);
    border-color: var(--teal3)
}

.loy-sect {
    padding: 80px 60px;
    background: var(--white)
}

.loy-cards {
    max-width: 1200px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.loy-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 26px 18px;
    text-align: center;
    transition: all .4s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px)
}

.loy-card.in {
    opacity: 1;
    transform: translateY(0)
}

.loy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal3), var(--teal));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s
}

.loy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 168, 150, .3);
    box-shadow: 0 10px 28px rgba(0, 168, 150, .08);
    background: var(--light)
}

.loy-card:hover::before {
    transform: scaleX(1)
}

.loy-ico {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s
}

.loy-card:hover .loy-ico {
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    border-color: transparent;
    transform: rotate(-8deg) scale(1.1)
}

.loy-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.8;
    transition: stroke .3s
}

.loy-card:hover .loy-ico svg {
    stroke: #fff
}

.loy-card h4 {
    font-size: 14px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 6px
}

.loy-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7
}

.loy-why {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    border-radius: 32px;
    padding: 54px 62px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    overflow: hidden
}

.loy-why::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 150, .18) 0%, transparent 60%);
    top: -100px;
    left: -100px
}

.lw-title {
    font-size: 19px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 26px
}

.lw-items {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.lw-item {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.lw-ico {
    width: 38px;
    height: 38px;
    background: rgba(0, 168, 150, .15);
    border: 1px solid rgba(0, 168, 150, .25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.lw-ico svg {
    width: 17px;
    height: 17px;
    stroke: var(--teal3);
    fill: none;
    stroke-width: 2
}

.lw-item h4 {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px
}

.lw-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6
}

.lw-right {
    text-align: center;
    position: relative
}

.big-num {
    font-size: 78px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--teal3), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.big-lbl {
    font-size: 13px;
    color: rgba(255, 255, 255);
    margin-top: 5px;
    margin-bottom: 26px;
    font-weight: 600;
}

.small-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.small-num {
    font-size: 30px;
    font-weight: 900;
    color: #fff
}

.small-stats p {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-top: 3px
}

.loy-cta-btn {
    margin-top: 26px;
    width: 100%;
    padding: 13px;
    background: #fff;
    color: var(--teal2);
    border: none;
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.loy-cta-btn:hover {
    transform: translateY(-2px)
}

.wal-sect {
    padding: 1px 60px;
    background: var(--white)
}

.wal-block {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg) 0%, #e0f5f4 100%);
    border: 1.5px solid var(--border);
    border-radius: 32px;
    padding: 50px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px;
    align-items: center
}

.wal-qr {
    text-align: center
}

.qr-box {
    width: 88px;
    height: 88px;
    background: var(--white);
    border-radius: 16px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(0, 168, 150, .1)
}

.qr-box svg {
    width: 58px;
    height: 58px;
    stroke: var(--teal2);
    fill: none;
    stroke-width: 1.5
}

.wal-qr h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px
}

.wal-qr p {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 14px
}

.wal-btn {
    width: 100%;
    padding: 10px 14px;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px
}

.wal-btn svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2
}

.wal-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px
}

.wstep {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 11px;
    padding: 10px 14px;
    border: 1px solid var(--border)
}

.wstep-ico {
    width: 32px;
    height: 32px;
    background: var(--light);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.wstep-ico svg {
    width: 14px;
    height: 14px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2
}

.wstep span {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink)
}

.ecom-sect {
    padding: 80px 60px;
    background: var(--bg)
}

.phone {
    width: 280px;
    background: #000;
    border-radius: 42px;
    padding: 9px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25)
}

.phone-in {
    background: #fff;
    border-radius: 34px;
    overflow: hidden
}

.ph-bar {
    padding: 9px 16px;
    background: linear-gradient(90deg, var(--teal2), var(--teal));
    color: #fff;
    display: flex;
    justify-content: space-between;
    font-size: 9px
}

.ph-head {
    padding: 12px 16px 14px;
    background: linear-gradient(90deg, var(--teal2), var(--teal));
    color: #fff
}

.ph-head h3 {
    font-size: 13px;
    font-weight: 800
}

.ph-head p {
    font-size: 9px;
    opacity: .8;
    margin-top: 1px
}

.ph-tabs {
    display: flex;
    background: #f3f4f6
}

.ph-tab {
    flex: 1;
    padding: 9px 5px;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    cursor: pointer
}

.ph-tab.a {
    background: #fff;
    color: var(--teal);
    border-bottom-color: var(--teal)
}

.ph-prods {
    padding: 10px;
    background: #f9fafb;
    max-height: 380px;
    overflow-y: auto
}

.ph-prod {
    background: #fff;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    margin-bottom: 9px
}

.ph-img {
    height: 80px;
    background: linear-gradient(135deg, var(--light), rgba(255, 255, 255, .5));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.ph-img svg {
    width: 34px;
    height: 34px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.2
}

.ph-bdg {
    position: absolute;
    top: 6px;
    right: 6px;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 800
}

.ph-body {
    padding: 8px 10px
}

.ph-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px
}

.ph-pname {
    font-size: 10px;
    font-weight: 800;
    color: var(--ink)
}

.ph-pprice {
    font-size: 11px;
    font-weight: 900;
    color: var(--teal)
}

.ph-colors {
    display: flex;
    gap: 3px;
    margin-bottom: 6px
}

.ph-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .8);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .1)
}

.ph-add {
    width: 100%;
    padding: 7px;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    color: #fff;
    border: none;
    border-radius: 7px;
    font-family: 'Tajawal', sans-serif;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer
}

.hr-sect {
    padding: 80px 60px;
    background: var(--white)
}

.hr-card {
    background: #fff;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1)
}

.hr-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px
}

.hr-g3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px
}

.hr-stat {
    border-radius: 11px;
    padding: 12px;
    text-align: center
}

.hr-stat.re {
    background: rgba(0, 168, 150, .05)
}

.hr-stat.ye {
    background: rgba(234, 179, 8, .05)
}

.hr-stat.gy {
    background: #f9fafb
}

.hr-sn {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 2px
}

.hr-stat.re .hr-sn {
    color: var(--teal)
}

.hr-stat.ye .hr-sn {
    color: #eab308
}

.hr-stat.gy .hr-sn {
    color: #DC2626
}

.hr-sl {
    font-size: 10px;
    color: #6b7280
}

.hr-rows {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 14px
}

.hr-row {
    background: #f9fafb;
    padding: 10px 12px;
    border-radius: 9px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.hr-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0
}

.hr-nm {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink)
}

.hr-rl {
    font-size: 10px;
    color: #6b7280;
    margin-top: 1px
}

.hr-time {
    font-size: 11px;
    font-weight: 600
}

.hr-st {
    font-size: 10px;
    margin-top: 1px
}

.hr-nfc {
    background: linear-gradient(135deg, rgba(0, 168, 150, .05), rgba(0, 168, 150, .1));
    border: 1px solid rgba(0, 168, 150, .2);
    border-radius: 11px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.hr-nfc svg {
    width: 24px;
    height: 24px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2
}

.hr-nfc-t {
    font-size: 12px;
    font-weight: 600;
    color: var(--teal2)
}

.hr-nfc-s {
    font-size: 10px;
    color: var(--teal);
    margin-top: 2px
}

.acc-sect {
    padding: 80px 60px;
    background: var(--bg)
}

.acc-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
    align-items: center
}

.acc-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 168, 150, .06)
}

.acc-hdr {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border)
}

.acc-tabs {
    display: flex;
    gap: 3px;
    background: var(--bg);
    padding: 3px;
    border-radius: 10px
}

.acc-tab {
    padding: 4px 11px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer
}

.acc-tab.a {
    background: #fff;
    color: var(--teal);
    box-shadow: 0 1px 5px rgba(0, 0, 0, .07)
}

.acc-tab.i {
    color: var(--muted)
}

.acc-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid var(--border)
}

.acc-kpi {
    padding: 18px
}

.acc-kpi:first-child {
    border-left: 1px solid var(--border)
}

.acc-kpi-pct {
    font-size: 11px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 4px
}

.acc-kpi-val {
    font-size: 21px;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -1px;
    margin-bottom: 3px
}

.acc-kpi-lbl {
    font-size: 10px;
    color: var(--muted)
}

.acc-months {
    padding: 18px
}

.acc-mrow {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 7px;
    border-radius: 9px;
    margin-bottom: 3px;
    transition: background .2s
}

.acc-mrow:hover {
    background: var(--bg)
}

.acc-mrow.hl {
    background: var(--light)
}

.acc-mn {
    font-size: 11px;
    font-weight: 800;
    color: var(--ink);
    min-width: 38px
}

.acc-bg {
    flex: 1;
    height: 6px;
    background: var(--bg);
    border-radius: 40px;
    overflow: hidden
}

.acc-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal2), var(--teal3));
    border-radius: 40px;
    transition: width 1.5s
}

.acc-pct {
    font-size: 10px;
    color: var(--teal);
    font-weight: 800
}

.acc-acts {
    display: flex;
    gap: 7px;
    padding: 12px 18px;
    border-top: 1px solid var(--border)
}

.acc-btn {
    flex: 1;
    padding: 8px;
    border-radius: 9px;
    font-family: 'Tajawal', sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: all .25s
}

.acc-btn:hover {
    transform: translateY(-1px)
}

.ab-blue {
    background: var(--light);
    color: var(--teal2)
}

.ab-green {
    background: #DCFCE7;
    color: #166534
}

.ab-gray {
    background: var(--bg);
    color: var(--muted);
    border: 1px solid var(--border)
}

.an-sect {
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--dark2), var(--dark));
    position: relative;
    overflow: hidden
}

.an-sect::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 168, 150, .1) 0%, transparent 60%);
    pointer-events: none
}

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

.an-col {
    text-align: center
}

.an-ico {
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 150, .15);
    border-radius: 14px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.an-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal3);
    fill: none;
    stroke-width: 2
}

.an-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--teal3);
    letter-spacing: -1px;
    margin-bottom: 5px
}

.an-col h4 {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px
}

.an-col p {
    font-size: 12px;
    color: rgba(255, 255, 255, .45)
}

.pay-sect {
    padding: 80px 60px;
    background: var(--bg)
}

.pay-cards {
    max-width: 900px;
    margin: 0 auto 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.pay-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 26px 18px;
    text-align: center;
    transition: all .4s;
    opacity: 0;
    transform: translateY(16px)
}

.pay-card.in {
    opacity: 1;
    transform: translateY(0)
}

.pay-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 168, 150, .08);
    border-color: rgba(0, 168, 150, .28)
}

.pay-ico {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--light);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.pay-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.8
}

.pay-card h4 {
    font-size: 15px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 5px
}

.pay-card p {
    font-size: 13px;
    color: var(--muted)
}

.pay-cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    border-radius: 18px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    gap: 18px
}

.pay-icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .15);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pay-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 2
}

.pay-cta-box h3 {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px
}

.pay-cta-box p {
    font-size: 13px;
    color: rgba(255, 255, 255, .8)
}

.testi-sect {
    padding: 80px 60px;
    background: var(--bg)
}

.t-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.t-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 22px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s, transform .5s, border-color .3s, box-shadow .3s
}

.t-card.in {
    opacity: 1;
    transform: translateY(0)
}

.t-card:hover {
    border-color: rgba(0, 168, 150, .28);
    box-shadow: 0 6px 20px rgba(0, 168, 150, .07)
}

.t-top {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px
}

.t-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0
}

.t-name {
    font-size: 13px;
    font-weight: 900;
    color: var(--ink)
}

.t-stars {
    font-size: 11px;
    color: #F59E0B;
    margin-top: 2px
}

.t-quote {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.75;
    font-style: italic
}

.t-quote::before {
    content: '"';
    font-size: 24px;
    color: var(--teal);
    font-style: normal;
    line-height: 0;
    vertical-align: -7px;
    margin-left: 3px
}

.wrap {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    background: #fff;
    padding: 80px 60px;
    position: relative;
    overflow: hidden
}

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

.og-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(28px)
}

.og-card.in {
    opacity: 1;
    transform: none;
    transition: opacity .55s, transform .55s cubic-bezier(.22, 1, .36, 1)
}

.og-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .11)
}

.og-img {
    height: 170px;
    overflow: hidden;
    position: relative
}

.og-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.22, 1, .36, 1)
}

.og-card:hover .og-img img {
    transform: scale(1.08)
}

.og-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18)
}

.og-overlay svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8
}

.og-body {
    padding: 18px;
    flex: 1
}

.og-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px
}

.og-desc {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.6
}

.why-section {
    padding: 80px 60px;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px
}

.why-card {
    background: var(--bg);
    border-radius: 14px;
    padding: clamp(20px, 3vw, 28px) 18px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s, border-color .25s
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    transform-origin: right
}

.why-card:hover::before {
    transform: scaleX(1);
    transform-origin: left
}

.why-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 44px rgba(0, 168, 150, .1);
    border-color: var(--teal)
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

.why-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke-width: 1.7
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotate(-10deg)
}

.why-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 5px
}

.why-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 500
}

.loyalty-feats-title {
    font-size: 40px;
    font-weight: 800;
    margin: 30px 0 30px;
    text-align: center
}

.cta-wrap {
    padding: 0 60px 80px;
    display: block !important;
}

.cta-box {
    max-width: 1200px !important;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0A2A2A 100%);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 30px !important;
}

.cta-orb1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 150, .15) 0%, transparent 60%);
    top: -100px;
    right: -100px;
    border-radius: 50%
}

.cta-orb2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(5, 196, 176, .1) 0%, transparent 60%);
    bottom: -80px;
    left: -80px;
    border-radius: 50%
}

.cta-in {
    position: relative;
    z-index: 1
}

.cta-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: rgba(0, 168, 150, .15);
    border: 1px solid rgba(0, 168, 150, .3);
    color: var(--teal3);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px
}

.cta-badge svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 12px;
    line-height: 1.1
}

.cta-box h2 u {
    text-decoration: underline wavy rgba(0, 168, 150, .5)
}

.cta-p {
    font-size: 16px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 34px
}

.teal-a {
    color: var(--teal3);
    font-weight: 800
}

.perks {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 38px
}

.perk {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 700
}

.perk svg {
    width: 13px;
    height: 13px;
    stroke: var(--teal3);
    fill: none;
    stroke-width: 2.5
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px
}

.btn-w {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    background: #fff;
    color: var(--teal2);
    border: none;
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15)
}

.btn-w:hover {
    transform: translateY(-2px)
}

.btn-ghost2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .85);
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s
}

.btn-ghost2:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-2px)
}

.cta-strip {
    display: flex;
    justify-content: center;
    gap: 44px
}

.cs-n {
    font-size: 30px;
    font-weight: 900;
    color: #fff
}

.cs-l {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    margin-top: 3px
}

.cs-sep {
    width: 1px;
    background: rgba(255, 255, 255, .15)
}



#gotoTop {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal), var(--teal2));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .35s, transform .35s;
    z-index: 999;
    box-shadow: 0 4px 14px rgba(0, 168, 150, .25)
}

#gotoTop.vis {
    opacity: 1;
    transform: translateY(0)
}

#gotoTop svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5
}

.assets-sect {
    padding: 80px 60px;
    background: var(--white);
    position: relative;
    overflow: hidden
}

@media(max-width:1100px) {


    .hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px
    }

    .hero-visual {
        display: none
    }

    .stats-sect,
    .prob-sect,
    .feat-sect,
    .sys-sect,
    .tabs-wrap,
    .loy-sect,
    .wal-sect,
    .ecom-sect,
    .hr-sect,
    .dark-sect,
    .adv-sect,
    .acc-sect,
    .an-sect,
    .pay-sect,
    .testi-sect,
    .cta-wrap,
    .why-section,
    .wrap,
    .assets-sect {
        padding-left: 24px;
        padding-right: 24px
    }

    .stats-sect {
        grid-template-columns: 1fr
    }

    .prob-grid,
    .feat-grid,
    .t-grid,
    .loy-cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .mod-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .extras-list {
        grid-template-columns: repeat(2, 1fr)
    }

    .sol-inner,
    .loy-why,
    .acc-inner,
    .wal-block {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 32px 24px
    }

    .split-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .d3,
    .an-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .pay-cards {
        grid-template-columns: 1fr
    }

    .cta-box {
        padding: 44px 24px
    }

    .cta-strip {
        gap: 18px
    }

    .a-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .og-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    @media(max-width:480px) {
        .og-grid {
            grid-template-columns: 1fr
        }
    }
}