@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;
}

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

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

:root {
    --red: #C8102E;
    --red-dark: #9B0B22;
    --red-light: #F9E8EB;
    --text: #1A1A1A;
    --text-muted: #666;
    --bg: #F8F7F5;
    --white: #FFFFFF;
    --border: #E8E5DF;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    --red2: #e74c3c;
    --teal: #1a7a6e;
    --teal2: #2ecc71;
    --dark: #1a1a2e;
    --gray: #f5f5f5;
    --gold: #c9a227;
    --yellow-light: #fffde7;
    --green-light: #e8f5e9;
    --blue-light: #e3f2fd;
}

html {
    scroll-behavior: smooth
}

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

a {
    text-decoration: none;
    color: inherit
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 4px
}

html,
body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

.hr-sect .container>div,
.ecom-sect .container>div,
.assets-sect .container>div {
    max-width: 100%;
    overflow: hidden;
}

[style*="grid-template-columns: 1fr 520px"],
[style*="grid-template-columns: 380px 1fr"],
[style*="grid-template-columns: 1fr 1fr"] {
    max-width: 100%;
}

@media (max-width: 1024px) {

    [style*="grid-template-columns: 1fr 520px"],
    [style*="grid-template-columns: 380px 1fr"] {
        grid-template-columns: 1fr !important;
    }
}



@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

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

    to {
        opacity: 1;
        transform: none
    }
}

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

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

[data-reveal] {
    opacity: 0;
    transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1)
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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



.btn-primary {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, .35)
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(200, 16, 46, .3);
    color: var(--red);
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s
}

.btn-outline:hover {
    background: rgba(200, 16, 46, .06);
    border-color: var(--red)
}



.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: clamp(28px, 4vh, 44px) clamp(16px, 4vw, 56px);
    gap: clamp(24px, 3vw, 44px);
    min-height: calc(100vh - 68px);
    background: #FDF2F4;
    position: relative;
    overflow: hidden
}

@media(max-width:920px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .hero-visual {
        display: none
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.hc {
    position: absolute;
    border-radius: 50%;
    background: rgba(200, 16, 46, .07)
}

.hc-1 {
    width: 420px;
    height: 420px;
    top: -90px;
    left: -110px;
    animation: hf1 9s ease-in-out infinite
}

.hc-2 {
    width: 260px;
    height: 260px;
    top: 50px;
    right: 38%;
    animation: hf2 11s ease-in-out infinite 1.2s
}

.hc-3 {
    width: 340px;
    height: 340px;
    bottom: -110px;
    right: -70px;
    animation: hf3 10s ease-in-out infinite 2s
}

.hc-4 {
    width: 150px;
    height: 150px;
    bottom: 70px;
    left: 28%;
    animation: hf1 8s ease-in-out infinite .6s
}

.hc-5 {
    width: 200px;
    height: 200px;
    top: 55%;
    right: 8%;
    animation: hf2 12s ease-in-out infinite 3.5s;
    opacity: .55
}

.hc-6 {
    width: 90px;
    height: 90px;
    top: 18%;
    left: 44%;
    animation: hf3 7s ease-in-out infinite 1.8s;
    opacity: .45
}

@keyframes hf1 {

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

    33% {
        transform: translate(16px, -20px)scale(1.03)
    }

    66% {
        transform: translate(-10px, 12px)scale(.97)
    }
}

@keyframes hf2 {

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

    33% {
        transform: translate(-18px, 14px)scale(.97)
    }

    66% {
        transform: translate(12px, -16px)scale(1.04)
    }
}

@keyframes hf3 {

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

    50% {
        transform: translate(18px, -22px)scale(1.05)
    }
}

.hero-text {
    position: relative;
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 16, 46, .12);
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    animation: badgePop .7s cubic-bezier(.34, 1.56, .64, 1) .2s both
}

@keyframes badgePop {
    from {
        opacity: 0;
        transform: scale(.6)translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

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

.hero-title {
    font-size: clamp(36px, 5.5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    animation: slideUp .85s cubic-bezier(.22, 1, .36, 1) .35s both
}

.hero-title .red {
    color: var(--red)
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(32px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.hero-desc {
    font-size: clamp(14px, 1.6vw, 16.5px);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 500;
    animation: slideUp .85s cubic-bezier(.22, 1, .36, 1) .5s both
}


.hero-subtitle {
    font-size: clamp(13px, 1.4vw, 15px);
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 32px;
    font-weight: 500;
    max-width: 680px;
    animation: slideUp .85s cubic-bezier(.22, 1, .36, 1) .6s both
}


.hero-subtitle {
    font-size: clamp(13px, 1.4vw, 15px);
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 32px;
    font-weight: 500;
    max-width: 680px;
    animation: slideUp .85s cubic-bezier(.22, 1, .36, 1) .6s both;
}

.hero-desc .red-text {
    color: var(--red);
    font-weight: 700
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    animation: slideUp .85s cubic-bezier(.22, 1, .36, 1) .65s both
}

.hero-btns .btn-primary,
.hero-btns .btn-outline {
    padding: 13px 26px;
    font-size: 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 7px
}

.hero-stats-strip {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    animation: slideUp .85s cubic-bezier(.22, 1, .36, 1) .78s both
}

.hstat-num {
    font-size: 26px;
    font-weight: 900
}

.hstat-num span {
    color: var(--red)
}

.hstat-lbl {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 1px
}

.hstat-sep {
    width: 1px;
    background: var(--border);
    align-self: stretch
}

.hero-visual {
    position: relative;
    z-index: 2;
    animation: cardIn 1.1s cubic-bezier(.22, 1, .36, 1) .5s both
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(40px)scale(.94)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.dashboard-card {
    background: #fff;
    border-radius: 16px;
    padding: clamp(14px, 1.8vw, 18px);
    box-shadow: 0 20px 64px rgba(200, 16, 46, .13), 0 4px 20px rgba(0, 0, 0, .06);
    border: 1px solid rgba(200, 16, 46, .1);
    animation: cardFloat 6s ease-in-out infinite 1.5s;
    max-width: 100%
}

@keyframes cardFloat {

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

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

.mac-dots {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    direction: ltr
}

.mac-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

.mac-dot.r {
    background: #FF5F57
}

.mac-dot.y {
    background: #FFBD2E
}

.mac-dot.g {
    background: #28C840
}

.dc-title {
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1px
}

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

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

.duo-box {
    border-radius: 9px;
    padding: 10px;
    text-align: center
}

.duo-box.pink {
    background: #FFF0F0;
    border: 1px solid #FFCDD2
}

.duo-box.mint {
    background: #E8F8F1;
    border: 1px solid #A8DFC6
}

.duo-icon {
    margin-bottom: 3px;
    line-height: 1
}

.duo-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke-width: 1.8
}

.duo-box.pink .duo-icon svg {
    stroke: #A32D2D
}

.duo-box.mint .duo-icon svg {
    stroke: #0F6E56
}

.duo-label {
    font-size: 9px;
    font-weight: 700;
    margin-bottom: 2px
}

.duo-box.pink .duo-label {
    color: #A32D2D
}

.duo-box.mint .duo-label {
    color: #0F6E56
}

.duo-value {
    font-size: 20px;
    font-weight: 900;
    line-height: 1
}

.duo-box.pink .duo-value {
    color: #E24B4A
}

.duo-box.mint .duo-value {
    color: #1D9E75
}

.sales-box {
    background: #FFFBEB;
    border: 1px solid #FAC775;
    border-radius: 9px;
    padding: 9px 12px;
    margin-bottom: 7px
}

.sales-label {
    font-size: 9px;
    color: #854F0B;
    font-weight: 700;
    margin-bottom: 2px
}

.sales-value {
    font-size: 19px;
    font-weight: 900;
    color: #412402;
    direction: ltr
}

.sales-change {
    font-size: 9px;
    color: #1D9E75;
    font-weight: 700;
    margin-top: 2px
}

.dc-divider {
    height: 1px;
    background: #EEE;
    margin: 7px 0
}

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

.sbox {
    border-radius: 8px;
    padding: 8px 10px
}

.sbox.red {
    background: #FFF0F0;
    border: 1px solid #FFCDD2
}

.sbox.green {
    background: #E8F8F1;
    border: 1px solid #A8DFC6
}

.sbox.yellow {
    background: #FFFBEB;
    border: 1px solid #FAC775
}

.sbox.blue {
    background: #EFF6FF;
    border: 1px solid #C3DFFE
}

.sbox-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px
}

.sbox-icon {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.sbox-icon svg {
    width: 10px;
    height: 10px;
    stroke-width: 2;
    fill: none
}

.sbox.red .sbox-icon {
    background: #FFCDD2
}

.sbox.red .sbox-icon svg {
    stroke: #A32D2D
}

.sbox.green .sbox-icon {
    background: #C6EDD8
}

.sbox.green .sbox-icon svg {
    stroke: #0F6E56
}

.sbox.yellow .sbox-icon {
    background: #FDE9A5
}

.sbox.yellow .sbox-icon svg {
    stroke: #854F0B
}

.sbox.blue .sbox-icon {
    background: #B5D4F4
}

.sbox.blue .sbox-icon svg {
    stroke: #185FA5
}

.sbox-label {
    font-size: 8px;
    font-weight: 700
}

.sbox.red .sbox-label {
    color: #A32D2D
}

.sbox.green .sbox-label {
    color: #0F6E56
}

.sbox.yellow .sbox-label {
    color: #854F0B
}

.sbox.blue .sbox-label {
    color: #185FA5
}

.sbox-value {
    font-size: 15px;
    font-weight: 900;
    line-height: 1
}

.sbox.red .sbox-value {
    color: #791F1F
}

.sbox.green .sbox-value {
    color: #085041
}

.sbox.yellow .sbox-value {
    color: #633806
}

.sbox.blue .sbox-value {
    color: #0C447C
}

.sbox-change {
    font-size: 8px;
    font-weight: 700;
    margin-top: 1px
}

.sbox.red .sbox-change {
    color: #E24B4A
}

.sbox.green .sbox-change {
    color: #1D9E75
}

.sbox.yellow .sbox-change {
    color: #BA7517
}

.sbox.blue .sbox-change {
    color: #378ADD
}

.sec-title {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 5px;
    letter-spacing: .3px;
    text-transform: uppercase
}

.orders {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.orow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8F7F5;
    border-radius: 6px;
    padding: 5px 8px;
    transition: transform .2s
}

.orow:hover {
    transform: translateX(-2px)
}

.onum {
    font-size: 9.5px;
    font-weight: 800
}

.ometa {
    font-size: 8px;
    color: var(--text-muted);
    margin-top: 1px
}

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

.pill {
    font-size: 7.5px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap
}

.p-new {
    background: #EFF6FF;
    color: #185FA5
}

.p-cook {
    background: #FFFBEB;
    color: #854F0B
}

.p-ready {
    background: #EAF3DE;
    color: #3B6D11
}

.oprice {
    font-size: 9.5px;
    font-weight: 900;
    color: #A32D2D
}

.floating-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    background: #fff;
    border-radius: 8px;
    padding: 6px 11px;
    box-shadow: 0 4px 16px rgba(200, 16, 46, .16);
    border: 1px solid rgba(200, 16, 46, .15);
    font-size: 10px;
    font-weight: 700;
    color: var(--red);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: fbFloat 3.5s ease-in-out infinite
}

@keyframes fbFloat {

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

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

.live-dot {
    width: 6px;
    height: 6px;
    background: #1D9E75;
    border-radius: 50%;
    flex-shrink: 0;
    animation: livePulse 1.6s ease-in-out infinite
}

@keyframes livePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(29, 158, 117, .5)
    }

    60% {
        box-shadow: 0 0 0 4px rgba(29, 158, 117, 0)
    }
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: clamp(32px, 5vw, 52px) clamp(16px, 4vw, 56px);
    gap: 20px;
    background: var(--bg)
}

@media(max-width:600px) {
    .stats-section {
        grid-template-columns: 1fr
    }
}

.stat-card {
    background: var(--white);
    border-radius: 14px;
    padding: clamp(20px, 3vw, 32px) 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform .3s, box-shadow .3s
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, .09)
}

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

.stat-card:hover .stat-icon {
    transform: scale(1.12) rotate(-6deg)
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--red);
    fill: none;
    stroke: currentColor;
    stroke-width: 2
}

.stat-number {
    font-size: clamp(34px, 5vw, 44px);
    font-weight: 900;
    color: var(--red);
    line-height: 1
}

.stat-label-big {
    font-size: 15px;
    font-weight: 700;
    margin-top: 5px
}

.stat-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    background: var(--red-light);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px
}

.section-label svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2
}

.section-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    margin-bottom: 10px
}

.section-title .red {
    color: var(--red)
}

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 44px;
    font-weight: 500;
    line-height: 1.65
}

.problems-section {
    padding: clamp(52px, 8vw, 84px) clamp(16px, 4vw, 56px);
    text-align: center;
    background: var(--white)
}

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

.problem-card {
    background: var(--bg);
    border-radius: 14px;
    padding: 26px 18px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s, border-color .25s
}

.problem-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 22px 50px rgba(200, 16, 46, .12);
    border-color: var(--red)
}

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

.problem-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke-width: 1.8
}

.problem-card:hover .problem-icon {
    transform: scale(1.25) rotate(10deg)
}

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

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

.solution-banner {
    margin: 0 clamp(16px, 4vw, 56px) clamp(44px, 6vw, 84px);
    border-radius: 24px;
    background: linear-gradient(135deg, #C8102E 0%, #9B0B22 50%, #006375 100%);
    padding: clamp(44px, 6vw, 72px) clamp(24px, 4vw, 56px);
    position: relative;
    overflow: hidden
}

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

.solution-banner::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-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1
}

@media(max-width:800px) {
    .sol-inner {
        grid-template-columns: 1fr
    }
}

.sol-left {
    color: #fff
}

.sol-left h2 {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2
}

.sol-left p {
    font-size: 14px;
    opacity: .85;
    line-height: 1.75;
    margin-bottom: 24px;
    font-weight: 500
}

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

.chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .25);
    transition: background .25s, transform .25s
}

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

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

.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-app-logo {

    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-app-logo {
    transform: scale(1.12) rotate(-6deg)
}



.sol-app-name {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4px
}

.sol-app-tagline {
    font-size: 14px;
    color: var(--red);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px
}

.sol-app-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
    font-weight: 500;
    margin-bottom: 22px
}

.sol-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.sol-stat {
    background: var(--bg);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    transition: transform .2s
}

.sol-stat:hover {
    transform: translateY(-3px)
}

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

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

.features-section {
    padding: clamp(52px, 8vw, 84px) clamp(16px, 4vw, 56px);
    background: var(--bg)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

@media(max-width:900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

.feature-card {
    background: var(--white);
    border-radius: 14px;
    padding: 26px 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s
}

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

.feature-card:hover::after {
    transform: scaleX(1);
    transform-origin: left
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, .11)
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

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

.feature-card:hover .feat-icon {
    transform: scale(1.25) rotate(-10deg)
}

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

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

.system-section {
    padding: clamp(52px, 8vw, 84px) clamp(16px, 4vw, 56px);
    background: var(--white);
    text-align: center
}

.system-card {
    background: var(--bg);
    border-radius: 20px;
    padding: clamp(22px, 4vw, 44px);
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid var(--border)
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(10px, 1.5vw, 16px);
    margin-bottom: 20px
}

@media(max-width:680px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.module-item {
    background: var(--white);
    border-radius: 14px;
    padding: clamp(18px, 2.5vw, 26px) 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s, border-color .25s
}

.module-item:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .09);
    border-color: var(--red)
}

.module-icon {
    width: clamp(48px, 6vw, 58px);
    height: clamp(48px, 6vw, 58px);
    background: var(--red-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 11px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

.module-icon svg {
    width: clamp(22px, 3vw, 26px);
    height: clamp(22px, 3vw, 26px);
    fill: none;
    stroke: var(--red);
    stroke-width: 1.7
}

.module-item:hover .module-icon {
    transform: scale(1.2) rotate(-8deg)
}

.module-name {
    font-size: clamp(11.5px, 1.3vw, 13px);
    font-weight: 700;
    line-height: 1.3
}

.extras-box {
    background: var(--white);
    border-radius: 14px;
    padding: clamp(16px, 2.5vw, 24px);
    border: 1px solid var(--border)
}

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

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

.extra-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500
}

.check-icon {
    width: 18px;
    height: 18px;
    background: var(--red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.check-icon svg {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: var(--red);
    stroke-width: 3
}

.offer-section {
    padding: clamp(52px, 8vw, 84px) clamp(16px, 4vw, 56px);
    background: var(--bg)
}

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

@media(max-width:780px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

.offer-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s;
    display: flex;
    flex-direction: column
}

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

.offer-img {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.offer-img-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12)
}

.offer-img-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke-width: 1.7
}

.offer-card:hover .offer-img-icon {
    transform: scale(1.18) rotate(-10deg)
}

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

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

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

.why-section {
    padding: clamp(52px, 8vw, 84px) clamp(16px, 4vw, 56px);
    background: var(--white);
    text-align: center
}

.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(--red);
    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(200, 16, 46, .1);
    border-color: var(--red)
}

.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(--text-muted);
    line-height: 1.6;
    font-weight: 500
}


.feat-sections-wrapper {
    background: var(--white)
}

.kds-section {
    background: var(--white);
    padding: 5rem clamp(16px, 4vw, 56px)
}

.kds-inner {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1150px;
    margin: 0 auto
}

.kds-left,
.kds-right {
    flex: 1;
    min-width: 280px
}

.kds-left .fs-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin-bottom: 1rem
}

.kds-left .fs-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8
}

.kds-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem
}

.kds-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem
}

.kds-feature-icon.ic-red {
    background: #ffebee;
    color: var(--red)
}

.kds-feature-icon.ic-yellow {
    background: #fff9e6;
    color: #f39c12
}

.kds-feature-icon.ic-green {
    background: #e8f5e9;
    color: #27ae60
}

.kds-feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .2rem
}

.kds-feature-text p {
    font-size: .88rem;
    color: #666;
    line-height: 1.6
}

.extra-box {
    background: #fffde7;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin-top: 1rem
}

.extra-box h4 {
    font-weight: 700;
    margin-bottom: .7rem
}

.extra-box ul {
    list-style: disc;
    padding-right: 1.5rem
}

.extra-box ul li {
    font-size: .88rem;
    color: #555;
    margin-bottom: .25rem
}

.kds-device {
    background: #1a1a2e;
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .25);
    animation: devFloat 3s ease-in-out infinite
}

@keyframes devFloat {

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

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

.kds-device-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem
}

.kds-device-title {
    color: #fff;
    font-size: .9rem;
    font-weight: 700
}

.kds-time {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700
}

.kds-order {
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: .8rem
}

.kds-order.yw {
    background: #fffde7
}

.kds-order.bl {
    background: #e3f2fd
}

.kds-order.gr {
    background: #e8f5e9
}

.kds-order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem
}

.kds-oid {
    background: #1a1a2e;
    color: #fff;
    border-radius: 20px;
    padding: .15rem .7rem;
    font-size: .8rem;
    font-weight: 700
}

.kds-otime {
    font-size: .78rem;
    color: #888
}

.kds-otable {
    font-size: .82rem;
    font-weight: 600
}

.kds-order ul {
    list-style: disc;
    padding-right: 1.2rem
}

.kds-order ul li {
    font-size: .85rem;
    color: #333;
    margin-bottom: .1rem
}

.kds-badge {
    display: inline-block;
    border-radius: 20px;
    padding: .12rem .65rem;
    font-size: .75rem;
    font-weight: 700;
    margin-top: .4rem
}

.kb-new {
    background: #ffe082;
    color: #795548
}

.kb-prep {
    background: #bbdefb;
    color: #1565c0
}

.kb-ready {
    background: #c8e6c9;
    color: #2e7d32
}

.inv-section {
    background: #fafafa;
    padding: 5rem clamp(16px, 4vw, 56px)
}

.inv-inner {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1150px;
    margin: 0 auto
}

.inv-left,
.inv-right {
    flex: 1;
    min-width: 280px
}

.inv-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06)
}

.inv-card-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem
}

.inv-stats3 {
    display: flex;
    gap: .8rem;
    margin-bottom: 1rem
}

.is3 {
    flex: 1;
    border-radius: 10px;
    padding: .7rem;
    text-align: center
}

.is3.red {
    background: #ffebee
}

.is3.yellow {
    background: #fff9e6
}

.is3.green {
    background: #e8f5e9
}

.is3-num {
    font-size: 1.4rem;
    font-weight: 800
}

.is3.red .is3-num {
    color: var(--red)
}

.is3.yellow .is3-num {
    color: #f39c12
}

.is3.green .is3-num {
    color: #27ae60
}

.is3-lbl {
    font-size: .75rem;
    color: #777
}

.inv-item {
    margin-bottom: .8rem
}

.inv-item-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .15rem
}

.inv-name {
    font-size: .9rem;
    font-weight: 600
}

.inv-cat {
    font-size: .76rem;
    color: #888
}

.inv-units {
    font-size: .88rem;
    font-weight: 700
}

.inv-badge {
    font-size: .7rem;
    padding: .08rem .45rem;
    border-radius: 10px;
    font-weight: 600
}

.ib-ok {
    background: #e8f5e9;
    color: #27ae60
}

.ib-soon {
    background: #fff3e0;
    color: #e65100
}

.ib-low {
    background: #ffebee;
    color: var(--red)
}

.inv-bar-bg {
    background: #f0f0f0;
    border-radius: 10px;
    height: 5px;
    margin: .25rem 0
}

.inv-bar {
    height: 5px;
    border-radius: 10px
}

.inv-meta2 {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    color: #888
}

.cost-sect {
    background: linear-gradient(135deg, #C8102E 0%, #9B0B22 50%, #006375 100%);
    color: #fff;
    padding: 4rem clamp(16px, 4vw, 56px)
}

.cost-sect .fs-title {
    color: #fff;
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin-bottom: .8rem
}

.cost-sect .fs-desc {
    color: rgba(255, 255, 255, .85);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.8
}

.cost-3c {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.c3 {
    text-align: center
}

.c3-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto .6rem
}

.c3 h4 {
    font-weight: 700;
    font-size: .95rem
}

.c3 p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .8)
}

.cost-table2 {
    background: rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 900px;
    margin: 0 auto
}

.cost-table2 h4 {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.cost-months {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

@media(max-width:600px) {
    .cost-months {
        grid-template-columns: repeat(2, 1fr)
    }
}

.cost-month h5 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .4rem
}

.cost-row {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    margin-bottom: .15rem
}

.cost-profit {
    color: #ffe082;
    font-weight: 700
}

.adv-sect {
    padding: 5rem clamp(16px, 4vw, 56px);
    background: #fff
}

.adv-sect.bg-off {
    background: #fafafa
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-top: 2.5rem;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto
}

@media(max-width:900px) {
    .adv-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

.adv-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    border: 1px solid #E8E5DF;
    transition: transform .3s, box-shadow .3s
}

.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12)
}

.adv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem
}

.ai-purple {
    background: #f3e5f5;
}

.ai-blue {
    background: #e3f2fd;
}

.ai-green {
    background: #e8f5e9;
}

.ai-red {
    background: #ffebee;
}

.ai-yellow {
    background: #fff9e6;
}

.adv-card h4 {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .35rem
}

.adv-card p {
    font-size: .83rem;
    color: #666;
    line-height: 1.6
}

.adv-sect-head {
    text-align: center;
    max-width: 1150px;
    margin: 0 auto
}

.hr-sect {
    background: #fafafa;
    padding: 5rem clamp(16px, 4vw, 56px)
}

.hr-inner {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1150px;
    margin: 0 auto
}

.hr-left,
.hr-right {
    flex: 1;
    min-width: 280px
}

.hr-device {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    padding: 1.2rem
}

.hr-device-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem
}

.hr-stats3 {
    display: flex;
    gap: .8rem;
    margin-bottom: 1rem
}

.hs3 {
    flex: 1;
    background: #f5f5f5;
    border-radius: 10px;
    padding: .7rem;
    text-align: center
}

.hs3-num {
    font-size: 1.4rem;
    font-weight: 800
}

.hs3-lbl {
    font-size: .75rem;
    color: #888
}

.hr-checkin {
    background: #f5f5f5;
    border-radius: 12px;
    padding: .7rem 1rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .5rem
}

.hr-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ddd;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.hr-info h5 {
    font-size: .87rem;
    font-weight: 600
}

.hr-info p {
    font-size: .75rem;
    color: #888
}

.hr-checkin-time {
    margin-right: auto;
    text-align: left
}

.hr-checkin-time .ht {
    font-size: .88rem;
    font-weight: 700
}

.st-green {
    color: #27ae60;
    font-size: .72rem;
    font-weight: 600
}

.st-yellow {
    color: #f39c12;
    font-size: .72rem;
    font-weight: 600
}

.nfc-box {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    margin-top: .5rem
}

.nfc-box p {
    font-size: .82rem;
    color: #888
}

.nfc-sect {
    background: linear-gradient(135deg, #C8102E 0%, #9B0B22 50%, #006375 100%);
    color: #fff;
    padding: 4rem clamp(16px, 4vw, 56px)
}

.nfc-sect .fs-title {
    color: #fff;
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin-bottom: .8rem
}

.nfc-sect .fs-desc {
    color: rgba(255, 255, 255, .85);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.8
}

.nfc-3c {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.n3 {
    text-align: center
}

.n3-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto .6rem
}

.n3 h4 {
    font-weight: 700;
    font-size: .95rem
}

.n3 p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .8)
}

.btn-outline-w {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .6);
    color: #fff;
    border-radius: 10px;
    padding: .7rem 2rem;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: all .2s;
    display: block;
    margin: 0 auto
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, .15)
}

.ecom-sect {
    background: #fafafa;
    padding: 5rem clamp(16px, 4vw, 56px)
}

.ecom-inner {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1150px;
    margin: 0 auto
}

.ecom-left,
.ecom-right {
    flex: 1;
    min-width: 280px
}

.ecom-right {
    display: flex;
    justify-content: center
}

.phone-mock {
    background: #111;
    border-radius: 36px;
    padding: .6rem;
    width: 220px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .3);
    animation: devFloat 3s ease-in-out infinite
}

.phone-screen {
    background: #fff;
    border-radius: 30px;
    overflow: hidden
}

.ph-header {
    background: #fff;
    padding: .5rem .8rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.ph-rname {
    font-weight: 700;
    font-size: .8rem
}

.ph-tabs {
    display: flex;
    border-bottom: 1px solid #eee
}

.ph-tab {
    flex: 1;
    text-align: center;
    padding: .35rem;
    font-size: .68rem;
    cursor: pointer
}

.ph-tab.act {
    border-bottom: 2px solid var(--red);
    color: var(--red);
    font-weight: 700
}

.ph-item {
    margin: .5rem;
    border-radius: 10px;
    overflow: hidden;
    background: #fafafa
}

.ph-img {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem
}

.ph-info {
    padding: .4rem .5rem
}

.ph-name {
    font-size: .76rem;
    font-weight: 700
}

.ph-price {
    color: var(--red);
    font-weight: 800;
    font-size: .8rem
}

.ph-meta {
    font-size: .65rem;
    color: #888
}

.ph-btn {
    background: var(--red);
    color: #fff;
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: .28rem;
    font-size: .73rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: .25rem;
    font-family: 'Tajawal', sans-serif
}

.ph-promo {
    background: var(--red);
    color: #fff;
    font-size: .62rem;
    padding: .15rem .4rem;
    border-radius: 4px;
    font-weight: 700
}

.journey-sect {
    background: #fff;
    padding: 5rem clamp(16px, 4vw, 56px)
}

.journey-inner {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center
}

.journey-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 2.5rem;
    flex-wrap: wrap
}

.j-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem
}

.j-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12)
}

.j-icon.jblue {
    background: #1e88e5;
    color: #fff
}

.j-icon.jgreen {
    background: #27ae60;
    color: #fff
}

.j-icon.jteal {
    background: #006375;
    color: #fff
}

.j-icon.jgray {
    background: #e0e0e0;
    color: #bbb
}

.j-step h4 {
    font-size: .88rem;
    font-weight: 700
}

.j-step p {
    font-size: .75rem;
    color: #888;
    max-width: 90px
}

.j-line {
    flex: 1;
    height: 5px;
    background: #6B7280;
    min-width: 30px;
    border-radius: 2px;
}

.pos-sect {
    background: linear-gradient(135deg, #C8102E 0%, #9B0B22 50%, #006375 100%);
    color: #fff;
    padding: 4rem clamp(16px, 4vw, 56px)
}

.pos-sect .fs-title {
    color: #fff;
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin-bottom: .8rem
}

.pos-sect .fs-desc {
    color: rgba(255, 255, 255, .85);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.8
}

.pos-3c {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap
}

.p3 {
    text-align: center
}

.p3-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto .6rem
}

.p3 h4 {
    font-weight: 700;
    font-size: .95rem
}

.p3 p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .8)
}

.payment-sect {
    background: #fff;
    padding: 5rem clamp(16px, 4vw, 56px)
}

.payment-inner {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center
}

.pay-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin: 2.5rem 0
}

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

.pay-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    border: 1px solid #E8E5DF;
    transition: transform .3s
}

.pay-card:hover {
    transform: translateY(-5px)
}

.pay-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    color: var(--red)
}

.pay-card h4 {
    font-weight: 700;
    font-size: .95rem
}

.pay-card p {
    font-size: .83rem;
    color: #888;
    margin-top: .3rem
}

.pay-cta {
    background: #fffde7;
    border: 1px solid #ffe082;
    border-radius: 16px;
    padding: 2rem;
    text-align: center
}

.pay-dollar {
    font-size: 2.2rem;
    color: #c9a227;
    margin-bottom: .4rem
}

.pay-cta h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #c9a227
}

.pay-cta p {
    font-size: .88rem;
    color: #888;
    margin-top: .3rem
}

.acc-sect {
    background: #fafafa;
    padding: 5rem clamp(16px, 4vw, 56px)
}

.acc-inner {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1150px;
    margin: 0 auto
}

.acc-left,
.acc-right {
    flex: 1;
    min-width: 280px
}

.acc-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    padding: 1.2rem
}

.acc-card-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem
}

.acc-tabs2 {
    display: flex;
    gap: .4rem
}

.acc-tab2 {
    padding: .18rem .7rem;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer
}

.acc-tab2.act {
    background: var(--red);
    color: #fff
}

.acc-tab2.inact {
    background: #f0f0f0;
    color: #888
}

.acc-kpis {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem
}

.acc-kpi-pct {
    font-size: .82rem;
    color: #27ae60
}

.acc-kpi-val {
    font-size: 1.25rem;
    font-weight: 800
}

.acc-kpi-lbl {
    font-size: .75rem;
    color: #888
}

.acc-month-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .45rem .6rem;
    border-radius: 8px;
    margin-bottom: .35rem
}

.acc-month-row.hl {
    background: #fdecea
}

.acc-mname {
    font-size: .88rem;
    font-weight: 600
}

.acc-mvals {
    font-size: .82rem;
    color: #555
}

.acc-mpct {
    font-size: .8rem;
    color: #27ae60
}

.acc-bar-bg {
    height: 7px;
    border-radius: 4px;
    background: #e0e0e0;
    margin-top: .15rem
}

.acc-bar-fill {
    height: 7px;
    border-radius: 4px;
    background: var(--red)
}

.acc-action-btns {
    display: flex;
    gap: .5rem;
    margin-top: .8rem
}

.acc-abtn {
    flex: 1;
    padding: .45rem;
    border-radius: 8px;
    border: none;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif
}

.abt-purple {
    background: #7b1fa2;
    color: #fff
}

.abt-green {
    background: #27ae60;
    color: #fff
}

.abt-blue {
    background: #1e88e5;
    color: #fff
}

.assets-sect {
    background: #fff;
    padding: 3rem clamp(16px, 4vw, 56px)
}

.assets-inner {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1150px;
    margin: 0 auto
}

.assets-left,
.assets-right {
    flex: 1;
    min-width: 280px
}

.assets-card,
.top-items-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    padding: 1.2rem
}

.assets-card-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem
}

.a-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .7rem
}

.a-item-info h5 {
    font-size: .85rem;
    font-weight: 600
}

.a-item-info p {
    font-size: .73rem;
    color: #888
}

.a-item-val .price {
    font-size: .85rem;
    font-weight: 700
}

.a-item-val .dep {
    font-size: .73rem;
    color: #888
}

.top-item-row {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .55rem;
    border-radius: 10px;
    margin-bottom: .35rem
}

.tir-gold {
    background: #fffde7
}

.ti-rank {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1a1a2e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .82rem;
    flex-shrink: 0
}

.ti-rank.rank1 {
    background: #c9a227
}

.ti-name {
    font-size: .85rem;
    font-weight: 600;
    flex: 1
}

.ti-meta {
    font-size: .73rem;
    color: #888
}

.ti-pct {
    font-size: .78rem;
    font-weight: 700;
    color: #27ae60
}

.ti-pct.down {
    color: var(--red)
}

.analytics-sect {
    background: linear-gradient(135deg, #C8102E 0%, #9B0B22 50%, #006375 100%);
    color: #fff;
    padding: 4rem clamp(16px, 4vw, 56px)
}

.analytics-sect .fs-title {
    color: #fff;
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin-bottom: .8rem
}

.analytics-sect .fs-desc {
    color: rgba(255, 255, 255, .85);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.8
}

.an-4c {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap
}

.an-col {
    text-align: center
}

.an-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto .6rem
}

.an-num {
    font-size: 1.9rem;
    font-weight: 900
}

.an-col h4 {
    font-size: .9rem;
    font-weight: 700;
    margin: .25rem 0 .15rem
}

.an-col p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .75)
}

.fs-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin-bottom: .8rem
}

.fs-desc {
    font-size: .95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem
}

.fs-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem
}

.fs-ficon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0
}

.fs-ficon.fred {
    background: #ffebee;
    color: var(--red)
}

.fs-ficon.fgreen {
    background: #e8f5e9;
    color: #2e7d32
}

.fs-ficon.fyellow {
    background: #fff3e0;
    color: #e65100
}

.fs-ficon.fblue {
    background: #e3f2fd;
    color: #1565c0
}

.fs-ficon.fpink {
    background: #fce4ec;
    color: #c62828
}

.fs-ftext h4 {
    font-size: .97rem;
    font-weight: 700;
    margin-bottom: .15rem
}

.fs-ftext p {
    font-size: .85rem;
    color: #666;
    line-height: 1.6
}

.cta-row2 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem
}

.btn-red {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .7rem 1.8rem;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: all .2s
}

.btn-red:hover {
    background: var(--red-dark);
    transform: scale(1.04)
}

.btn-outline2 {
    background: #fff;
    color: var(--text);
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: .65rem 1.6rem;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: all .2s
}

.btn-outline2:hover {
    border-color: var(--red);
    color: var(--red)
}

.fr {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

.fr-l {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease
}

.fr-r {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease
}

.fr.vis,
.fr-l.vis,
.fr-r.vis {
    opacity: 1;
    transform: none
}

.wrap {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    background: #fff;
    padding: 60px 40px
}

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

.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap
}

.tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s
}

.tab:hover {
    border-color: var(--red);
    color: var(--red)
}

.tab.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 6px 20px rgba(200, 16, 46, .3)
}

.panel {
    display: none;
    background: #fff;
    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(14px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.panel-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px
}

.olist {
    display: flex;
    flex-direction: column;
    gap: 0
}

.orow2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    background: var(--bg);
    border-radius: 10px;
    border: 1px solid transparent;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: border-color .2s, transform .2s
}

.orow2.visible {
    opacity: 1;
    transform: none;
    transition: opacity .45s, transform .45s cubic-bezier(.22, 1, .36, 1)
}

.orow2:hover {
    border-color: var(--border);
    transform: translateX(-4px)
}

.onum2 {
    font-size: 13px;
    font-weight: 800
}

.ometa2 {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500
}

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

.badge2 {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px
}

.b-new2 {
    background: #EFF6FF;
    color: #1D4ED8
}

.b-cook2 {
    background: #FFFBEB;
    color: #B45309
}

.b-ready2 {
    background: #F0FDF4;
    color: #15803D
}

.oprice2 {
    font-size: 14px;
    font-weight: 800;
    color: var(--red)
}

.kgrid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.kitem2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    border-radius: 10px;
    padding: 14px 16px;
    opacity: 0;
    transform: translateY(16px)
}

.kitem2.visible {
    opacity: 1;
    transform: none;
    transition: opacity .45s, transform .45s cubic-bezier(.22, 1, .36, 1)
}

.kname2 {
    font-size: 13px;
    font-weight: 800
}

.kmeta2 {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500
}

.kleft2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px
}

.prio2 {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px
}

.p-hi2 {
    background: #FEF2F2;
    color: #B91C1C
}

.p-ok2 {
    background: #F9FAFB;
    color: #6B7280
}

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

.aitem2 {
    background: var(--bg);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    opacity: 0;
    transform: translateY(16px)
}

.aitem2.visible {
    opacity: 1;
    transform: none;
    transition: opacity .45s, transform .45s cubic-bezier(.22, 1, .36, 1)
}

.aval2 {
    font-size: 22px;
    font-weight: 900
}

.achg2 {
    font-size: 10px;
    font-weight: 600;
    margin-top: 2px
}

.gc2 {
    color: #15803D
}

.rc2 {
    color: var(--red)
}

.albl2 {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600
}

.chart-box2 {
    background: var(--bg);
    border-radius: 10px;
    padding: 16px
}

.chart-lbl2 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px
}

.bars2 {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 90px
}

.bar2 {
    background: var(--red);
    border-radius: 4px 4px 0 0;
    flex: 1;
    opacity: .82;
    transition: height .8s cubic-bezier(.22, 1, .36, 1), opacity .2s
}

.bar2:hover {
    opacity: 1
}

.days2 {
    display: flex;
    gap: 7px;
    margin-top: 6px
}

.days2 span {
    flex: 1;
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    font-weight: 600
}

.timer-badge2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F0FDF4;
    color: #15803D;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    margin-bottom: 14px
}

.dot-live2 {
    width: 7px;
    height: 7px;
    background: #15803D;
    border-radius: 50%;
    animation: pulse2 1.6s ease-in-out infinite
}

@keyframes pulse2 {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(21, 128, 61, .5)
    }

    60% {
        box-shadow: 0 0 0 5px rgba(21, 128, 61, 0)
    }
}

.tcard {
    background: #F8F7F5;
    border-radius: 16px;
    padding: 18px;
    border: 1px solid #E8E5DF;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s, border-color .2s;
    opacity: 0;
    transform: translateY(30px)
}

.tcard.in {
    opacity: 1;
    transform: translateY(0)
}

.tcard:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 22px 50px rgba(200, 16, 46, .12);
    border-color: var(--red)
}

.card-top2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px
}

.tavatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eee
}

.tavatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.tinfo {
    text-align: right
}

.tname {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px
}

.tstars {
    color: #F59E0B;
    font-size: 12px
}

.tquote {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    font-weight: 500
}

.tgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

@media(max-width:900px) {
    .tgrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

@media(max-width:800px) {
    .og-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

.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: 160px;
    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(--text-muted);
    font-weight: 500;
    line-height: 1.6
}

.cta-wrapAQ {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    background: #F8F7F5;
    padding: 60px 40px
}

.cta {
    background: linear-gradient(135deg, #C8102E 0%, #9B0B22 40%, #006375 100%);
    border-radius: 28px;
    padding: 72px 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(200, 16, 46, .22)
}

.orb1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    pointer-events: none
}

.orb2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0, 99, 117, .25);
    border-radius: 50%;
    bottom: -120px;
    left: 5%;
    pointer-events: none
}

.orb3 {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
    top: 30%;
    left: 10%;
    pointer-events: none
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
    animation: bdgIn .7s cubic-bezier(.34, 1.56, .64, 1) .1s both
}

@keyframes bdgIn {
    from {
        opacity: 0;
        transform: scale(.7)translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.cta h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.15;
    animation: upIn .75s cubic-bezier(.22, 1, .36, 1) .2s both
}

@keyframes upIn {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.cta h2 u {
    text-decoration-thickness: 3px;
    text-underline-offset: 6px
}

.cta p {
    font-size: 16px;
    opacity: .88;
    margin-bottom: 18px;
    font-weight: 500;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    animation: upIn .75s cubic-bezier(.22, 1, .36, 1) .32s both
}

.perks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 36px;
    animation: upIn .75s cubic-bezier(.22, 1, .36, 1) .44s both
}

.perk {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    opacity: .92
}

.perk svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5
}

.btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: upIn .75s cubic-bezier(.22, 1, .36, 1) .56s both
}

.btn-w {
    background: #fff;
    color: var(--red);
    border: none;
    padding: 16px 36px;
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s, box-shadow .2s
}

.btn-w:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
}

.btn-g {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .5);
    padding: 16px 36px;
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s
}

.btn-g:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-3px)
}

.teal-accent {
    color: #FFFFFF;
    font-weight: 900
}

.stats-strip {
    display: flex;
    justify-content: center;
    gap: 44px;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    animation: upIn .75s cubic-bezier(.22, 1, .36, 1) .65s both
}

.stat-n {
    font-size: 32px;
    font-weight: 900
}

.stat-l {
    font-size: 11px;
    opacity: .75;
    font-weight: 600;
    margin-top: 2px
}


@media(max-width:600px) {

    .kds-inner,
    .inv-inner,
    .hr-inner,
    .ecom-inner,
    .acc-inner,
    .assets-inner {
        flex-direction: column
    }

    .cta {
        padding: 44px 24px
    }

    .cta h2 {
        font-size: 28px
    }

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

    .nfc-3c,
    .pos-3c,
    .cost-3c,
    .an-4c {
        flex-direction: column;
        gap: 1rem
    }

    .j-line {
        flex: 1;
        height: 4px;
        background: #9CA3AF;
        min-width: 30px;
    }

    .journey-steps {
        flex-direction: column;
        gap: 1rem
    }
}


.j-line {
    flex: 1;
    height: 4px;
    background: #9CA3AF;
    min-width: 30px;
}

.j-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    position: relative;
    transform: scale(0.8);
    opacity: 0.5;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.j-icon.active {
    transform: scale(1.1);
    opacity: 1;
    animation: iconPulse 0.6s ease-in-out;
}

.j-icon.completed {
    transform: scale(1);
    opacity: 1;
}

@keyframes iconPulse {

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

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

.j-step h4 {
    font-size: .88rem;
    font-weight: 700;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.j-step p {
    font-size: .75rem;
    color: #888;
    max-width: 90px;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.j-step.active h4,
.j-step.active p {
    opacity: 1;
    color: var(--red);
    font-weight: 800;
}

.j-step.completed h4,
.j-step.completed p {
    opacity: 1;
}

.section-with-bg {
    position: relative;
    overflow: hidden;
}

.section-bg-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(200, 16, 46, 0.06);
    animation: floatCircle 20s ease-in-out infinite;
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    animation-duration: 18s;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    left: 10%;
    animation-duration: 22s;
    animation-delay: 2s;
    background: rgba(155, 11, 34, 0.05);
}

.bg-circle-3 {
    width: 350px;
    height: 350px;
    top: 40%;
    left: -100px;
    animation-duration: 25s;
    animation-delay: 4s;
}

.bg-circle-4 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 15%;
    animation-duration: 20s;
    animation-delay: 1s;
    background: rgba(26, 107, 74, 0.04);
}

.bg-circle-5 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 5%;
    animation-duration: 16s;
    animation-delay: 3s;
    background: rgba(200, 16, 46, 0.04);
}

@keyframes floatCircle {

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

    25% {
        transform: translate(30px, -40px) scale(1.1);
    }

    50% {
        transform: translate(-20px, -60px) scale(0.95);
    }

    75% {
        transform: translate(40px, -30px) scale(1.05);
    }
}

.section-with-bg>*:not(.section-bg-circles) {
    position: relative;
    z-index: 1;
}


@keyframes hover-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(200, 16, 46, 0.1);
    }

    50% {
        box-shadow: 0 8px 40px rgba(200, 16, 46, 0.2);
    }
}

@keyframes hover-lift {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-5px);
    }
}

@keyframes hover-scale {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

@keyframes hover-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-3px);
    }
}

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

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

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

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

@keyframes bounce-slow {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-custom {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes heartbeat {

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

    10%,
    30% {
        transform: scale(1.1);
    }

    20%,
    40% {
        transform: scale(1);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.hover-glow {
    animation: hover-glow 3s ease-in-out infinite;
}

.hover-lift:hover {
    animation: hover-lift 0.3s ease forwards;
}

.hover-scale:hover {
    animation: hover-scale 0.3s ease forwards;
}

.hover-slide:hover {
    animation: hover-slide 0.3s ease forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInDown {
    animation: fadeInDown 0.6s ease-out;
}

.animate-bounce-slow {
    animation: bounce-slow 2s ease-in-out infinite;
}

.animate-pulse-custom {
    animation: pulse-custom 2s ease-in-out infinite;
}

.animate-heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

.stagger-6 {
    animation-delay: 0.6s;
}

.stagger-7 {
    animation-delay: 0.7s;
}

.stagger-8 {
    animation-delay: 0.8s;
}

@media (max-width: 640px) {
    .grid {
        grid-template-columns: 1fr !important;
    }

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr !important;
    }
}



.j-line {
    flex: 1;
    height: 4px;
    background: #9CA3AF;
    min-width: 30px;
}

.j-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    position: relative;
    transform: scale(0.9);
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.j-step.active .j-icon {
    transform: scale(1.15);
    opacity: 1;
    animation: iconPulse 0.6s ease-in-out;
}

.j-step.completed .j-icon {
    transform: scale(1);
    opacity: 1;
}

@keyframes iconPulse {

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

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

.j-step h4 {
    font-size: .88rem;
    font-weight: 700;
    opacity: 0.5;
    transition: all 0.4s ease;
    color: #374151;
}

.j-step p {
    font-size: .75rem;
    color: #6b7280;
    max-width: 90px;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.j-step.active h4,
.j-step.active p {
    opacity: 1;
    color: #C8102E;
    font-weight: 800;
}

.j-step.completed h4,
.j-step.completed p {
    opacity: 1;
}













@keyframes iconPulse {

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

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













.journey-steps {
    position: relative;
}

.j-line {
    flex: 1;
    height: 4px;
    background: #9CA3AF;
    min-width: 30px;
}





.j-step {
    position: relative;
    z-index: 3;
}

.j-icon {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1);
    opacity: 0.7;
}

.j-step.active .j-icon {
    transform: scale(1.25) !important;
    opacity: 1 !important;
    animation: pulse-icon 0.8s ease-in-out;
}

@keyframes pulse-icon {

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

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

.j-step h4,
.j-step p {
    transition: all 0.4s ease;
    opacity: 0.6;
}

.j-step.active h4,
.j-step.active p {
    opacity: 1 !important;
    color: #C8102E !important;
    font-weight: 800 !important;
}

.j-step.done h4,
.j-step.done p {
    opacity: 1;
}

.j-step.done .j-icon {
    opacity: 1;
    transform: scale(1);
}



.j-line::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #C8102E;
    transition: width 1.8s ease-in-out;
    transform-origin: right;
}

.j-line.red-fill::after {
    width: 100%;
}


.j-line {
    flex: 1;
    height: 4px;
    background: #9CA3AF;
    min-width: 30px;
}





.j-step.step-active .j-icon {
    transform: scale(1.3) !important;
    animation: iconBounce 0.6s ease !important;
}

@keyframes iconBounce {

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

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

.j-step.step-active h4,
.j-step.step-active p {
    color: #C8102E !important;
    font-weight: 900 !important;
}



.j-line {
    flex: 1;
    height: 4px;
    background: #9CA3AF;
    min-width: 30px;
}

.j-line::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 0 !important;
    height: 100% !important;
    background: #C8102E !important;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 10 !important;
}

.j-line.fill-red::before {
    width: 100% !important;
}

.j-step.is-active .j-icon {
    transform: scale(1.4) !important;
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.3) !important;
}

.j-step.is-active h4,
.j-step.is-active p {
    color: #C8102E !important;
    font-weight: 900 !important;
}

.journey-steps {
    position: relative;
}

.j-step {
    position: relative;
    transition: all 0.5s ease;
}

.j-step::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #C8102E 0%, #FF6B6B 100%);
    border-radius: 10px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(200, 16, 46, 0.3);
}

.j-step.active::before {
    width: 80%;
}

.j-step.active .j-icon {
    transform: scale(1.2) rotate(360deg);
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.4);
}

.j-step.active h4 {
    color: #C8102E;
    font-weight: 900;
    transform: translateY(-3px);
    transition: all 0.4s ease;
}

.j-step.active p {
    color: #C8102E;
    font-weight: 700;
}

.j-step.completed .j-icon {
    transform: scale(1.05);
    opacity: 0.9;
}

.j-step.completed::after {
    content: '✓';
    position: absolute;
    top: -10px;
    right: 5px;
    background: #16a34a;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    animation: checkPop 0.4s ease;
}

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

    50% {
        transform: scale(1.2);
    }

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

.j-step.active .j-icon {
    animation: iconPulse 1.5s infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(200, 16, 46, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(200, 16, 46, 0.7);
    }
}

@media (max-width: 768px) {
    .journey-steps {
        flex-direction: column !important;
        gap: 40px !important;
    }

    .j-line {
        display: none !important;
    }

    .j-step::before {
        top: -20px;
        width: 0%;
    }

    .j-step.active::before {
        width: 90%;
    }
}

@media (max-width: 1200px) {

    .container,
    .hero-inner,
    .features-inner,
    .why-inner,
    .kds-inner,
    .inv-inner,
    .hr-inner,
    .ecom-inner,
    .payment-inner,
    .acc-inner,
    .assets-inner,
    .cta-inner {
        max-width: 100% !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

@media (max-width: 992px) {

    .ecom-inner>div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .ecom-inner>div>div:first-child {
        order: 2;
    }

    .ecom-inner>div>div:last-child {
        order: 1;
        display: flex;
        justify-content: center;
    }

    .hr-inner>div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .assets-inner>div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .hero-desc {
        font-size: 15px !important;
    }

    .hero-subtitle {
        font-size: 13px !important;
        margin-bottom: 24px !important;
    }

    .hero-btns {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .hero-btns button {
        width: 100% !important;
    }

    .hero-stats-strip {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .fs-title {
        font-size: 28px !important;
    }

    .fs-desc {
        font-size: 14px !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .why-grid {
        grid-template-columns: 1fr !important;
    }

    .cta-row,
    .cta-row2 {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .cta-row button,
    .cta-row2 button {
        width: 100% !important;
    }

    .ecom-inner>div>div>div[style*="width: 320px"] {
        width: 280px !important;
        height: 520px !important;
    }

    .hr-inner>div>div:last-child>div,
    .assets-inner>div>div>div {
        padding: 24px !important;
    }

    div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }

    section {
        padding: 60px 20px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px !important;
    }

    .fs-title {
        font-size: 24px !important;
    }

    .ecom-inner>div>div>div[style*="width: 320px"],
    .ecom-inner>div>div>div[style*="width: 280px"] {
        width: 260px !important;
        height: 480px !important;
    }

    button {
        font-size: 14px !important;
        padding: 12px 20px !important;
    }
}

@media (max-width: 896px) and (orientation: landscape) {
    .hero-inner {
        padding: 40px 20px !important;
    }

    section {
        padding: 50px 20px !important;
    }
}

[data-sa] {
    opacity: 0;
    transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

[data-sa="up"] {
    transform: translateY(55px);
}

[data-sa="down"] {
    transform: translateY(-40px);
}

[data-sa="right"] {
    transform: translateX(55px);
}

[data-sa="left"] {
    transform: translateX(-55px);
}

[data-sa="scale"] {
    transform: scale(.82);
}

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

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

[data-sa-d="1"] {
    transition-delay: .08s;
}

[data-sa-d="2"] {
    transition-delay: .16s;
}

[data-sa-d="3"] {
    transition-delay: .24s;
}

[data-sa-d="4"] {
    transition-delay: .32s;
}

[data-sa-d="5"] {
    transition-delay: .40s;
}

[data-sa-d="6"] {
    transition-delay: .48s;
}

[data-sa-d="7"] {
    transition-delay: .56s;
}

[data-sa-d="8"] {
    transition-delay: .64s;
}

[data-sa-d="9"] {
    transition-delay: .72s;
}

[data-sa-d="10"] {
    transition-delay: .80s;
}

.pos-section {
    background: #fff;
    padding: 5rem clamp(16px, 4vw, 56px);
}

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

.pos-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .pos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pos-grid>div:last-child {
        order: -1;
    }
}

.pos-text {
    text-align: right;
}

.pos-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 900;
    margin: 0 0 16px;
    line-height: 1.2;
}

.pos-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin: 0 0 32px;
}

.pos-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

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

.pos-feat {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s, border-color .25s;
}

.pos-feat:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px rgba(200, 16, 46, .12);
    border-color: #C8102E;
}

.pos-feat-ic {
    width: 48px;
    height: 48px;
    background: rgba(200, 16, 46, .08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.pos-feat:hover .pos-feat-ic {
    transform: scale(1.2) rotate(-10deg);
}

.pos-feat-ic svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #C8102E;
    stroke-width: 2;
}

.pos-feat h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
}

.pos-feat p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.pos-btns {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

@media (max-width: 600px) {
    .pos-btns {
        flex-direction: column;
    }

    .pos-btns button {
        width: 100%;
    }
}

.pos-btn-primary {
    padding: 14px 32px;
    background: #C8102E;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: background .2s, transform .15s, box-shadow .2s;
}

.pos-btn-primary:hover {
    background: #9B0B22;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 16, 46, .3);
}

.pos-btn-outline {
    padding: 14px 32px;
    background: transparent;
    color: #555;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: all .2s;
}

.pos-btn-outline:hover {
    border-color: #C8102E;
    color: #C8102E;
}

.pos-mockup-wrap {
    position: relative;
}

.pos-mockup-dot-green {
    position: absolute;
    top: -12px;
    right: 50%;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border-radius: 50%;
    z-index: 2;
    animation: dotPulseG 2s ease-in-out infinite;
}

@keyframes dotPulseG {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

.pos-mockup-dot-blue {
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    animation: dotPulseB 2.5s ease-in-out infinite .5s;
}

@keyframes dotPulseB {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, .5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(59, 130, 246, 0);
    }
}

.pos-mockup {
    background: #1a1a2e;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    animation: mockFloat 4s ease-in-out infinite;
}

@keyframes mockFloat {

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

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

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

.pos-mock-time {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.pos-mock-title {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.pos-mock-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.pos-mock-tab {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pos-mock-tab.active {
    background: #C8102E;
    font-weight: 700;
}

.pos-mock-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.pos-mock-product {
    background: rgba(255, 255, 255, .95);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    transition: transform .2s;
}

.pos-mock-product:hover {
    transform: scale(1.05);
}

.pos-mock-pname {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
}

.pos-mock-pprice {
    font-size: 14px;
    font-weight: 800;
    color: #C8102E;
    margin-top: 4px;
}

.pos-mock-summary {
    background: rgba(255, 255, 255, .95);
    border-radius: 12px;
    padding: 16px;
}

.pos-mock-stitle {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: right;
}

.pos-mock-srow {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
    color: #555;
}

.pos-mock-srow .price {
    font-weight: 700;
}

.pos-mock-total {
    border-top: 1px solid #eee;
    padding-top: 8px;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 800;
}

.pos-mock-total .total-price {
    color: #C8102E;
}


.tables-section {
    background: #fafafa;
    padding: 5rem clamp(16px, 4vw, 56px);
}

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

.s-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(200, 16, 46, .08);
    color: #C8102E;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(200, 16, 46, .15);
}

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

.tables-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.2;
    color: #C8102E;
}

.tables-subtitle {
    font-size: 15px;
    color: #6b7280;
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.tables-heading {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
}

.table-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .table-plans {
        grid-template-columns: 1fr;
    }
}

.tp-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    border: 1px solid #e5e7eb;
    transition: transform .5s cubic-bezier(.22, 1, .36, 1), box-shadow .5s;
}

.tp-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.tp-card-img {
    height: 180px;
    position: relative;
    overflow: hidden;
}

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

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

.tp-card-badges {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
}

.tp-badge-item {
    background: rgba(0, 0, 0, .65);
    color: #fff;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tp-card-body {
    padding: 18px;
    text-align: center;
}

.tp-card-body h4 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 8px;
}

.tp-card-body p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.table-adv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 48px;
}

@media (max-width: 600px) {
    .table-adv-grid {
        grid-template-columns: 1fr;
    }
}

.ta-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    text-align: right;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.ta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: #C8102E;
    transform: scaleX(0);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    transform-origin: right;
}

.ta-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(200, 16, 46, .1);
    border-color: #C8102E;
}

.ta-card-ic {
    width: 52px;
    height: 52px;
    background: rgba(200, 16, 46, .08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    margin-right: auto;
    margin-left: 0;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.ta-card:hover .ta-card-ic {
    transform: scale(1.2) rotate(-10deg);
}

.ta-card-ic svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #C8102E;
    stroke-width: 2;
}

.ta-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 6px;
}

.ta-card>p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 12px;
}

.ta-checks {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ta-check {
    font-size: 12px;
    color: #16a34a;
    font-weight: 600;
}

.qr-block {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 48px;
    text-align: right;
}

@media (max-width: 768px) {
    .qr-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.qr-mockup-outer {
    position: relative;
}

.qr-dot-green {
    position: absolute;
    top: -8px;
    right: 50%;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    z-index: 2;
    animation: dotPulseG 2s ease-in-out infinite;
}

.qr-dot-blue {
    position: absolute;
    bottom: -6px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 50%;
    animation: dotPulseB 2.5s ease-in-out infinite .5s;
}

.qr-mockup-card {
    background: #e8f5f0;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    animation: mockFloat 5s ease-in-out infinite 1s;
}

.qr-code-box {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.qr-code-box svg {
    width: 80px;
    height: 80px;
    fill: none;
    stroke: #1a1a2e;
    stroke-width: .8;
}

.qr-mockup-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 4px;
}

.qr-mockup-card>p {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 16px;
}

.qr-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
    padding: 8px 16px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 8px;
}

.qr-info-row .val-red {
    color: #C8102E;
    font-weight: 700;
}

.qr-info-row .val-green {
    color: #22c55e;
    font-weight: 700;
}

.qr-text-title {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 20px;
}

.qr-features {
    display: grid;
    gap: 20px;
}

.qr-feat-item {
    display: flex;
    align-items: start;
    gap: 14px;
    transition: transform .3s;
}

.qr-feat-item:hover {
    transform: translateX(-5px);
}

.qr-feat-ic {
    width: 44px;
    height: 44px;
    background: rgba(200, 16, 46, .08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), background .3s;
}

.qr-feat-item:hover .qr-feat-ic {
    transform: scale(1.15) rotate(-6deg);
    background: rgba(200, 16, 46, .15);
}

.qr-feat-ic svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #C8102E;
    stroke-width: 2;
}

.qr-feat-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 3px;
}

.qr-feat-item p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.print-block {
    background: #f0f4f8;
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 48px;
}

.print-title {
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 8px;
}

.print-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 32px;
}

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

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

.print-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s;
}

.print-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

.print-card-ic {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.5rem;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.print-card:hover .print-card-ic {
    transform: scale(1.2) rotate(-8deg);
}

.print-card-ic.ic-red {
    background: rgba(200, 16, 46, .08);
}

.print-card-ic.ic-green {
    background: rgba(26, 107, 74, .08);
}

.print-card-ic.ic-yellow {
    background: rgba(234, 179, 8, .08);
}

.print-card h4 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 4px;
}

.print-card>p {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 10px;
}

.print-card .items {
    font-size: 11px;
    color: #555;
    line-height: 1.8;
}

.tables-cta {
    background: linear-gradient(135deg, #C8102E 0%, #9B0B22 40%, #006375 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tables-cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
    top: -100px;
    left: -60px;
    pointer-events: none;
}

.tables-cta h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 8px;
    position: relative;
}

.tables-cta>p {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    margin: 0 0 20px;
    position: relative;
}

.tables-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: relative;
}

@media (max-width: 480px) {
    .tables-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

.cta-btn-ghost {
    padding: 12px 28px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .25s;
}

.cta-btn-ghost:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff;
    transform: translateY(-3px);
}

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


.loyalty-section {
    background: #fff;
    padding: 5rem clamp(16px, 4vw, 56px);
}

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

.loyalty-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    margin: 0 0 16px;
    line-height: 1.2;
}

.loyalty-subtitle {
    font-size: 15px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.wallet-block {
    background: #f0f4f8;
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 48px;
}

@media (max-width: 600px) {
    .wallet-block {
        padding: 24px;
    }
}

.wallet-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
    text-align: right;
}

@media (max-width: 768px) {
    .wallet-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.wallet-qr {
    background: #e8f5f0;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    animation: mockFloat 5s ease-in-out infinite 2s;
}

.wallet-qr h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 4px;
}

.wallet-qr>p {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 16px;
}

.wallet-qr-btn {
    background: #C8102E;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto;
    transition: background .2s, transform .15s;
}

.wallet-qr-btn:hover {
    background: #9B0B22;
    transform: translateY(-2px);
}

.wallet-qr-btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.wallet-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.wallet-header-ic {
    width: 48px;
    height: 48px;
    background: rgba(26, 107, 74, .08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-header-ic svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #006375;
    stroke-width: 2;
}

.wallet-header h4 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.wallet-header p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.wallet-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 20px;
}

.wallet-steps {
    display: grid;
    gap: 12px;
}

.w-step {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform .3s;
}

.w-step:hover {
    transform: translateX(-5px);
}

.w-step-ic {
    width: 32px;
    height: 32px;
    background: rgba(200, 16, 46, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), background .25s;
}

.w-step:hover .w-step-ic {
    transform: scale(1.15);
    background: rgba(200, 16, 46, .15);
}

.w-step-ic svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #C8102E;
    stroke-width: 2;
}

.w-step span {
    font-size: 13px;
    font-weight: 600;
}

.loyalty-feats-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 24px;
}

.loyalty-feats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

@media (max-width: 900px) {
    .loyalty-feats {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.lf-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.lf-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: #C8102E;
    transform: scaleX(0);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    transform-origin: right;
}

.lf-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.lf-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 16px 40px rgba(200, 16, 46, .12);
    border-color: #C8102E;
}

.lf-card-ic {
    width: 52px;
    height: 52px;
    background: rgba(200, 16, 46, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.lf-card:hover .lf-card-ic {
    transform: scale(1.2) rotate(-8deg);
}

.lf-card-ic svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #C8102E;
    stroke-width: 2;
}

.lf-card h4 {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 6px;
}

.lf-card p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.loyalty-why-block {
    background: #f0f4f8;
    border-radius: 24px;
    padding: 48px;
}

@media (max-width: 600px) {
    .loyalty-why-block {
        padding: 24px;
    }
}

.loyalty-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .loyalty-why-grid {
        grid-template-columns: 1fr;
    }
}

.lw-title {
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 20px;
    text-align: right;
}

.lw-items {
    display: grid;
    gap: 16px;
    text-align: right;
}

.lw-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform .3s;
}

.lw-item:hover {
    transform: translateX(-5px);
}

.lw-item-ic {
    width: 40px;
    height: 40px;
    background: rgba(200, 16, 46, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), background .25s;
}

.lw-item:hover .lw-item-ic {
    transform: scale(1.15);
    background: rgba(200, 16, 46, .15);
}

.lw-item-ic svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #C8102E;
    stroke-width: 2;
}

.lw-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px;
}

.lw-item p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.lw-stats {
    text-align: center;
}

.lw-big-num {
    font-size: 72px;
    font-weight: 900;
    color: #C8102E;
    line-height: 1;
}

@media (max-width: 480px) {
    .lw-big-num {
        font-size: 52px;
    }
}

.lw-big-label {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px;
}

.lw-small-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 24px;
}

.lw-small-num {
    font-size: 28px;
    font-weight: 900;
}

.lw-small-num.green {
    color: #16a34a;
}

.lw-small-num.red {
    color: #C8102E;
}

.lw-small-stats p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.loyalty-cta-btn {
    padding: 14px 32px;
    background: #C8102E;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    width: 100%;
    max-width: 350px;
    transition: background .2s, transform .15s, box-shadow .2s;
}

.loyalty-cta-btn:hover {
    background: #9B0B22;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 16, 46, .3);
}

#gotoTop {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(103, 58, 183, 0.35);
    opacity: 0;
    transform: translateY(16px) scale(0.85);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s ease;
    pointer-events: none;
}

#gotoTop.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

#gotoTop:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 14px 32px rgba(103, 58, 183, 0.45);
}

#gotoTop:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .assets-sect .container>div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-btns .btn-primary,
    .hero-btns button {
        flex: 1;
        min-width: 140px;
        padding: 12px 16px !important;
        font-size: 13px !important;
        white-space: nowrap;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .assets-sect .container>div {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .acc-inner {
        flex-direction: column !important;
    }

    .ecom-sect .container>div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .ecom-sect .container>div>div:first-child {
        display: flex;
        justify-content: center;
    }

    .inv-inner {
        flex-direction: column !important;
    }

    .kds-inner {
        flex-direction: column !important;
    }

    .assets-sect .container,
    .ecom-sect .container,
    .hr-sect .container,
    .acc-sect .acc-inner,
    .inv-sect .inv-inner {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hr-sect .container>div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}

.og-card[onclick] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.og-card[onclick]:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(200, 16, 46, 0.15);
}

.og-card[onclick]::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: #C8102E;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s;
}

.og-card[onclick]:hover::after {
    opacity: 1;
}