﻿@font-face {
    font-family: 'Cairo-Regular';
    src: url('/Resources/webfonts/Cairo-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Cairo-Bold';
    src: url('/Resources/webfonts/Cairo-Bold.ttf') format('truetype');
}

* {
    font-family: Cairo-Bold, Tahoma, Arial, sans-serif;
}

:root {
    --navy: #18254f;
    --navy-dark: #101a3b;
    --navy-light: #26376d;
    --blue: #203b86;
    --orange: #f0a000;
    --orange-dark: #db8e00;
    --orange-soft: #fff7e7;
    --green: #159552;
    --green-soft: #eaf8f0;
    --red: #d32328;
    --red-soft: #fff0f0;
    --white: #ffffff;
    --background: #f5f7fb;
    --surface-soft: #f8f9fc;
    --text: #18213c;
    --text-light: #747b8d;
    --border: #e4e7ee;
    --shadow-sm: 0 0.5em 1.5em rgba(24, 37, 79, .06);
    --shadow-md: 0 1.125em 3.125em rgba(24, 37, 79, .10);
    --shadow-lg: 0 1.75em 4.375em rgba(24, 37, 79, .14);
    --radius-sm: 0.75em;
    --radius: 1.125em;
    --radius-lg: 1.625em;
    --container-width: 95%;
}


/* =========================================================
   إعادة الضبط
========================================================= */

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

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: "Cairo", sans-serif;
    font-size: 15px;
}

    body.menu-open {
        overflow: hidden;
    }

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

img {
    height: auto;
}

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

button,
input,
select,
textarea {
    max-width: 100%;
    font: inherit;
}

button {
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

::selection {
    background: var(--navy);
    color: #fff;
}


/* =========================================================
   نظام الحاويات والشبكات
========================================================= */

.container {
    width: min(calc(100% - 2em), var(--container-width));
    max-width: 100%;
    margin-inline: auto;
}

.grid {
    display: grid;
    min-width: 0;
}

    .grid > * {
        min-width: 0;
    }

.grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3em;
}

.cards-grid {
    display: grid;
    min-width: 0;
    gap: 1.25em;
}

.features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2.5em;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55em;
    border: 0;
    text-align: center;
}


/* =========================================================
   شاشة التحميل
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity .4s ease, visibility .4s ease;
}

    .page-loader.loaded {
        opacity: 0;
        visibility: hidden;
    }

.loader-box {
    width: 15em;
    text-align: center;
}

.loader-logo {
    position: relative;
    width: 4.5em;
    height: 4.5em;
    margin: 0 auto 1em;
}

    .loader-logo::before {
        content: "";
        position: absolute;
        inset: -0.4em;
        border: 0.125em solid #e8eaf0;
        border-top-color: var(--orange);
        border-radius: 1.35em;
        animation: loaderRotate 1.2s linear infinite;
    }

    .loader-logo span {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        border-radius: 1.125em;
        background: var(--navy);
        color: #fff;
        font-size: 2.16em;
        font-weight: 900;
    }

.loader-box strong {
    display: block;
    color: var(--navy);
    font-size: 1.5em;
    font-weight: 900;
}

.loader-box small {
    display: block;
    margin-top: .3em;
    color: var(--text-light);
    font-size: 0.96em;
}

.loader-progress {
    height: .2em;
    margin-top: 1em;
    overflow: hidden;
    border-radius: 2em;
    background: #eceef3;
}

    .loader-progress span {
        display: block;
        width: 45%;
        height: 100%;
        background: var(--orange);
        animation: loaderProgress 1.2s ease-in-out infinite;
    }

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

@keyframes loaderProgress {
    from {
        transform: translateX(150%);
    }

    to {
        transform: translateX(-250%);
    }
}


/* =========================================================
   الشريط العلوي
========================================================= */

.top-bar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1040;
    height: 2em;
    background: #f7f8fb;
    border-bottom: .0625em solid var(--border);
    transition: transform .35s ease, opacity .3s ease, visibility .3s ease;
    font-size: 0.9em;
}

    .top-bar.top-bar-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-100%);
    }

.top-bar-inner {
    height: 2.25em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-contact,
.top-links {
    display: flex;
    align-items: center;
    gap: 1.35em;
}

    .top-contact span,
    .top-links a {
        color: var(--text-light);
        font-size: 0.9em;
        font-weight: 600;
    }

    .top-contact span,
    .footer-contact {
        direction: ltr;
    }

    .top-contact i {
        margin-left: .35em;
        color: var(--orange);
    }

    .top-links a:hover {
        color: var(--navy);
    }


/* =========================================================
   القائمة
========================================================= */

.main-navbar {
    position: fixed;
    top: 2.25em;
    right: 0;
    left: 0;
    z-index: 1030;
    padding: .75em 0;
    background: rgba(255, 255, 255, .97);
    border-bottom: .0625em solid rgba(228, 231, 238, .85);
    backdrop-filter: blur(1em);
    transition: top .35s ease, padding .3s ease, box-shadow .3s ease;
}

    .main-navbar.scrolled {
        top: 0;
        padding: .5em 0;
        box-shadow: 0 .625em 2.2em rgba(24, 37, 79, .07);
    }

.navbar-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: .7em;
}

.brand-icon {
    position: relative;
    width: 2.75em;
    height: 2.75em;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: .75em;
    background: var(--navy);
    color: var(--orange);
    font-size: 1.2em;
}

    .brand-icon::after {
        content: "";
        position: absolute;
        top: -1.5em;
        left: -2em;
        width: 1.1em;
        height: 6em;
        background: rgba(255, 255, 255, .12);
        transform: rotate(30deg);
        transition: left .45s ease;
    }

.brand:hover .brand-icon::after {
    left: 4.5em;
}

.logo-name {
    display:flex;
    direction:ltr;
    align-items:last baseline;
    align-self:first baseline;

    font-size:1.1em;

}
    .logo-name strong {
        font-size: 1.4em;
        color:#f0a000;
        padding-left:0.2em;
    }

    .brand-info {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .brand-info small {
        margin-top: .2em;
        color: var(--text-light);
        font-size: 0.78em;
        font-weight: 700;
    }

.main-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
    gap: 1.25em;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    gap: .1em;
}

.nav-link {
    position: relative;
    display: block;
    padding: .55em .65em;
    border-radius: .55em;
    color: #535b70;
    font-size: 1.1em;
    font-weight: 700;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease;
}

    .nav-link::after {
        content: "";
        position: absolute;
        right: 50%;
        bottom: .15em;
        width: 0;
        height: .13em;
        border-radius: 2em;
        background: var(--orange);
        transform: translateX(50%);
        transition: width .25s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: #f5f6fa;
        color: var(--navy);
    }

        .nav-link.active::after {
            width: 1.1em;
        }

.nav-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: .5em;
}

.nav-login,
.nav-demo {
    min-height: 2.7em;
    padding: 0.8em 1em;
    border-radius: .65em;
    font-size: 0.864em;
    font-weight: 800;
}

.nav-login {
    border: .0625em solid var(--border);
    background: #f0a000;
    color: var(--navy);
}

    .nav-login:hover {
        border-color: #cbd0dd;
        background: var(--orange-dark);
    }

.nav-demo {
    background: var(--navy);
    color: #fff;
}

    .nav-demo:hover {
        background: var(--navy-dark);
    }

.menu-toggler {
    display: none;
    width: 2.75em;
    height: 2.75em;
    padding: .45em;
    border: .0625em solid var(--border);
    border-radius: .65em;
    background: #fff;
}

    .menu-toggler span {
        width: 1.4em;
        height: .13em;
        display: block;
        margin: .28em auto;
        border-radius: 1em;
        background: var(--navy);
        transition: transform .25s ease, opacity .25s ease;
    }

    .menu-toggler.active span:nth-child(1) {
        transform: translateY(.41em) rotate(45deg);
    }

    .menu-toggler.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggler.active span:nth-child(3) {
        transform: translateY(-.41em) rotate(-45deg);
    }


/* =========================================================
   عناصر مشتركة
========================================================= */

.section {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 5em 0;
    overflow: hidden;
    background: #fff;
}

.section-heading {
    max-width: 45em;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-flex;
    margin-bottom: .75em;
    padding: .4em .75em;
    border: .0625em solid #e4e7ef;
    border-radius: .5em;
    background: #f8f9fc;
    color: var(--navy);
    font-size: 0.9em;
    font-weight: 900;
}

.section-heading h2,
.faq-intro h2 {
    margin: 0 0 .65em;
    color: var(--navy);
    font-size: 2.76em;
    font-weight: 900;
    line-height: 1.5;
}

    .section-heading h2 span,
    .faq-intro h2 span {
        color: var(--orange-dark);
    }

.section-heading p,
.faq-intro > p {
    margin: 0;
    color: var(--text-light);
    font-size: 1.14em;
    line-height: 2;
}


/* =========================================================
   الواجهة الرئيسية
========================================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 50em;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 10em 0 5em;
    background: #fff;
}

.hero-grid {
    align-items: center;
}

.hero-decoration {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.hero-decoration-one {
    top: 7.5em;
    left: -11em;
    width: 29em;
    height: 29em;
    border: 5em solid rgba(24, 37, 79, .025);
}

.hero-decoration-two {
    right: -8.5em;
    bottom: -12em;
    width: 27em;
    height: 27em;
    border: 4.2em solid rgba(240, 160, 0, .035);
}

.hero-content {
    position: relative;
    z-index: 3;
    min-width: 0;
}

.hero-badge {
    width: max-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: .55em;
    margin-bottom: 1.1em;
    padding: .4em .7em .4em .85em;
    border: .0625em solid #e3e6ee;
    border-radius: 3em;
    background: #fff;
    color: var(--navy);
    box-shadow: 0 .3em 1.1em rgba(24, 37, 79, .04);
    font-size: 0.96em;
    font-weight: 800;
}

.badge-icon {
    width: 1.7em;
    height: 1.7em;
    display: grid;
    place-items: center;
    flex: 0 0 1.7em;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange-dark);
}

.hero-content h1 {
    max-width: 10.5em;
    margin: 0 0 .45em;
    color: var(--navy);
    font-size: 3.26em;
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: -.025em;
}

    .hero-content h1 span {
        position: relative;
        display: block;
        width: max-content;
        max-width: 100%;
        color: var(--orange-dark);
    }

        .hero-content h1 span::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: .1em;
            z-index: -1;
            width: 100%;
            height: .18em;
            border-radius: 2em;
            background: rgba(240, 160, 0, .12);
        }

.action-flex {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 2em;
}

    .action-flex img {
        height: 8em;
    }

.hero-description {
    max-width: 36em;
    margin-bottom: 1.4em;
    color: var(--text-light);
    font-size: 1.1em;
    line-height: 2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6em;
}

.primary-button,
.outline-button {
    min-height: 3.15em;
    padding: 0 1.3em;
    border-radius: .7em;
    font-size: 0.984em;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-button {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 .75em 1.75em rgba(24, 37, 79, .18);
}

    .primary-button:hover {
        transform: translateY(-.15em);
        background: var(--navy-dark);
    }

.outline-button {
    border: .0625em solid var(--border);
    background: #fff;
    color: var(--navy);
}

    .outline-button:hover {
        transform: translateY(-.15em);
        background: #f8f9fb;
    }

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1em;
    margin-top: 1.4em;
}

    .hero-benefits div {
        display: flex;
        align-items: center;
        gap: .35em;
        color: #666e80;
        font-size: 0.96em;
        font-weight: 700;
    }

    .hero-benefits i {
        color: var(--green);
    }


/* =========================================================
   لوحة الإدارة
========================================================= */

.dashboard-visual {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.dashboard-glow {
    position: absolute;
    inset: 5em 2em;
    z-index: -1;
    border-radius: 50%;
    background: rgba(24, 37, 79, .08);
    filter: blur(4em);
}

.dashboard-window {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border: .0625em solid #dfe3ec;
    border-radius: 1.2em;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: perspective(87em) rotateY(-3deg) rotateX(1deg);
    transition: transform .35s ease;
}

.dashboard-visual:hover .dashboard-window {
    transform: perspective(87em) rotateY(0) rotateX(0) translateY(-.2em);
}

.dashboard-top {
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1em;
    background: var(--navy);
    color: #fff;
}

.window-dots {
    display: flex;
    gap: .3em;
}

    .window-dots span {
        width: .45em;
        height: .45em;
        border-radius: 50%;
        background: rgba(255, 255, 255, .25);
    }

        .window-dots span:first-child {
            background: var(--orange);
        }

.dashboard-top strong {
    font-size: 0.9em;
}

.dashboard-user {
    width: 1.75em;
    height: 1.75em;
    display: grid;
    place-items: center;
    border-radius: .5em;
    background: rgba(255, 255, 255, .09);
    font-size: 0.78em;
}

.dashboard-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1em;
    background: #f8f9fc;
}

.dashboard-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    margin-bottom: .8em;
}

    .dashboard-heading > div {
        min-width: 0;
    }

    .dashboard-heading small {
        color: var(--text-light);
        font-size: 0.78em;
    }

    .dashboard-heading h3 {
        margin: .1em 0 0;
        color: var(--navy);
        font-size: 1.26em;
        font-weight: 900;
    }

.dashboard-date {
    flex: 0 0 auto;
    padding: .35em .5em;
    border: .0625em solid var(--border);
    border-radius: .4em;
    background: #fff;
    color: var(--text-light);
    font-size: 0.72em;
}

    .dashboard-date i {
        margin-left: .25em;
        color: var(--orange);
    }

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5em;
}

.mini-stat {
    position: relative;
    min-width: 0;
    min-height: 6em;
    padding: .75em;
    overflow: hidden;
    border: .0625em solid var(--border);
    border-top-width: .13em;
    border-radius: .6em;
    background: #fff;
}

.stat-green {
    border-top-color: var(--green);
}

.stat-red {
    border-top-color: var(--red);
}

.stat-orange {
    border-top-color: var(--orange);
}

.mini-icon {
    position: absolute;
    top: .7em;
    left: .7em;
    width: 1.8em;
    height: 1.8em;
    display: grid;
    place-items: center;
    border-radius: .4em;
    color: #fff;
    font-size: 0.84em;
}

.stat-green .mini-icon {
    background: var(--green);
}

.stat-red .mini-icon {
    background: var(--red);
}

.stat-orange .mini-icon {
    background: var(--orange);
}

.mini-stat small {
    display: block;
    color: var(--text-light);
    font-size: 0.72em;
}

.mini-stat strong {
    display: block;
    margin-top: .7em;
    color: var(--navy);
    font-size: 1.26em;
    font-weight: 900;
}

.mini-stat em {
    display: block;
    margin-top: .1em;
    color: #999eaa;
    font-size: 0.66em;
    font-style: normal;
}

.dashboard-lower {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: .55em;
    margin-top: .55em;
}

.dashboard-chart,
.dashboard-donut {
    min-width: 0;
    min-height: 12em;
    padding: .75em;
    border: .0625em solid var(--border);
    border-radius: .6em;
    background: #fff;
}

.chart-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .chart-title strong,
    .dashboard-donut > strong {
        display: block;
        color: var(--navy);
        font-size: 0.84em;
        font-weight: 900;
    }

    .chart-title small,
    .dashboard-donut > small {
        display: block;
        margin-top: .1em;
        color: #999eaa;
        font-size: 0.66em;
    }

    .chart-title > span {
        color: var(--orange);
        font-size: 0.96em;
    }

.chart-area {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 7.5em;
    margin-top: .7em;
}

.chart-grid {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .chart-grid span {
        height: .0625em;
        background: #edf0f4;
    }

.chart-area svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.chart-area polyline,
.large-chart polyline {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2.3s .7s ease forwards;
}

.line-blue {
    stroke: var(--navy);
}

.line-green {
    stroke: var(--green);
}

.line-red {
    stroke: var(--red);
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: .2em;
    color: #9da2ae;
    font-size: 0.6em;
}

.dashboard-donut {
    text-align: center;
}

.donut-chart {
    position: relative;
    width: 6.5em;
    height: 6.5em;
    display: grid;
    place-items: center;
    margin: .8em auto .55em;
    border-radius: 50%;
    background: conic-gradient(var(--green) 0 58%, var(--red) 58% 72%, var(--orange) 72% 100%);
}

    .donut-chart::after {
        content: "";
        position: absolute;
        width: 3.5em;
        height: 3.5em;
        border-radius: 50%;
        background: #fff;
    }

.donut-center {
    position: relative;
    z-index: 2;
    color: #989eaa;
    font-size: 0.66em;
}

.donut-labels {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .4em;
    color: #888e9d;
    font-size: 0.6em;
}

.dot {
    width: .4em;
    height: .4em;
    display: inline-block;
    margin-left: .1em;
    border-radius: .1em;
}

.green-dot {
    background: var(--green);
}

.red-dot {
    background: var(--red);
}

.orange-dot {
    background: var(--orange);
}

.floating-notice {
    position: absolute;
    z-index: 4;
    min-width: 12em;
    display: flex;
    align-items: center;
    gap: .5em;
    padding: .6em .75em;
    border: .0625em solid var(--border);
    border-radius: .65em;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-md);
}

.floating-notice-one {
    right: -1.2em;
    bottom: 1.5em;
    animation: floatOne 4s ease-in-out infinite;
}

.floating-notice-two {
    top: 3em;
    left: -1em;
    animation: floatTwo 4.5s .5s ease-in-out infinite;
}

.notice-icon {
    width: 2em;
    height: 2em;
    display: grid;
    place-items: center;
    flex: 0 0 2em;
    border-radius: .5em;
    font-size: 0.84em;
}

.notice-green {
    background: var(--green-soft);
    color: var(--green);
}

.notice-orange {
    background: var(--orange-soft);
    color: var(--orange-dark);
}

.floating-notice small {
    display: block;
    color: #969ba7;
    font-size: 0.66em;
}

.floating-notice strong {
    display: block;
    margin-top: .1em;
    color: var(--navy);
    font-size: 0.78em;
}

@keyframes floatOne {
    50% {
        transform: translateY(-.45em);
    }
}

@keyframes floatTwo {
    50% {
        transform: translateY(.4em);
    }
}


/* =========================================================
   الحركات
========================================================= */

.hero-animate {
    opacity: 0;
    animation: heroIn .75s ease forwards;
}

.hero-delay-1 {
    animation-delay: .12s;
}

.hero-delay-2 {
    animation-delay: .24s;
}

.hero-delay-3 {
    animation-delay: .36s;
}

.hero-delay-4 {
    animation-delay: .48s;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(1.5em);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(1.75em);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

    .reveal.show {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}


/* =========================================================
   الشريط المختصر
========================================================= */

.quick-strip {
    width: 100%;
    padding-bottom: 2em;
    overflow: hidden;
    background: #fff;
}

.quick-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: .0625em solid var(--border);
    border-radius: 1em;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.quick-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: .7em;
    padding: 1em;
    border-left: .0625em solid var(--border);
}

    .quick-item:last-child {
        border-left: 0;
    }

.quick-icon,
.feature-icon,
.module-icon,
.industry-icon,
.workflow-icon,
.price-icon,
.screen-stat-icon {
    display: grid;
    place-items: center;
}

.quick-icon {
    width: 2.6em;
    height: 2.6em;
    flex: 0 0 2.6em;
    border-radius: .6em;
}

.icon-blue {
    background: #edf1fb;
    color: var(--blue);
}

.icon-orange {
    background: var(--orange-soft);
    color: var(--orange-dark);
}

.icon-green {
    background: var(--green-soft);
    color: var(--green);
}

.icon-red {
    background: var(--red-soft);
    color: var(--red);
}

.quick-item strong {
    display: block;
    color: var(--navy);
    font-size: 0.96em;
    font-weight: 900;
}

.quick-item small {
    display: block;
    margin-top: .15em;
    color: var(--text-light);
    font-size: 0.78em;
}


/* =========================================================
   البطاقات
========================================================= */

.feature-card,
.module-card,
.industry-card,
.workflow-card,
.price-card {
    min-width: 0;
    max-width: 100%;
}

.feature-card {
    position: relative;
    min-height: 13.5em;
    padding: 1.35em;
    overflow: hidden;
    border: .0625em solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .feature-card:hover {
        transform: translateY(-.35em);
        box-shadow: var(--shadow-md);
    }

.feature-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.feature-icon {
    width: 3em;
    height: 3em;
    border-radius: .75em;
    font-size: 1.26em;
}

.feature-number {
    color: #e6e8ed;
    font-size: 1.8em;
    font-weight: 900;
}

.feature-card h3 {
    margin: 1.1em 0 .45em;
    color: var(--navy);
    font-size: 1.26em;
    font-weight: 900;
}

.feature-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.984em;
    line-height: 1.85;
}

.feature-line {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: .18em;
    background: var(--orange);
    transition: width .35s ease;
}

.feature-card:hover .feature-line {
    width: 100%;
}


/* =========================================================
   الأنظمة
========================================================= */

.modules-section,
.industries-section,
.pricing-section {
    background: #f8f9fc;
}

.modules-grid,
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9em;
    margin-top: 2.3em;
}

.module-card {
    position: relative;
    min-height: 12.5em;
    padding: 1.25em;
    border: .0625em solid var(--border);
    border-radius: .9em;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .module-card:hover {
        transform: translateY(-.3em);
        box-shadow: var(--shadow-md);
    }

.module-icon {
    width: 2.8em;
    height: 2.8em;
    margin-bottom: 1em;
    border-radius: .7em;
}

.module-card h3 {
    margin: 0 0 .4em;
    color: var(--navy);
    font-size: 1.14em;
    font-weight: 900;
}

.module-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9em;
    line-height: 1.8;
}

.module-arrow {
    position: absolute;
    left: 1.1em;
    bottom: 1em;
    color: #c0c4ce;
    font-size: 0.9em;
}


/* =========================================================
   السلايدر
========================================================= */

.showcase-slider {
    width: 100%;
    max-width: 100%;
    margin-top: 2.3em;
}

.showcase-window {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border: .0625em solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.showcase-track {
    display: flex;
    width: 100%;
    min-width: 0;
    direction: ltr;
    transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}

.showcase-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 2.75em;
    direction: rtl;
}

.showcase-grid {
    align-items: center;
}

.slide-count {
    display: inline-block;
    margin-bottom: .7em;
    color: var(--orange-dark);
    font-size: 0.9em;
    font-weight: 900;
}

.showcase-copy h3 {
    max-width: 15em;
    margin: 0 0 .65em;
    color: var(--navy);
    font-size: 2.22em;
    font-weight: 900;
    line-height: 1.55;
}

.showcase-copy > p {
    max-width: 31em;
    margin: 0 0 1em;
    color: var(--text-light);
    font-size: 1.02em;
    line-height: 2;
}

.showcase-points {
    display: grid;
    gap: .5em;
}

    .showcase-points span {
        color: #626a7d;
        font-size: 0.96em;
        font-weight: 700;
    }

    .showcase-points i {
        margin-left: .35em;
        color: var(--green);
    }

.showcase-screen {
    min-width: 0;
    overflow: hidden;
    border: .0625em solid #dfe3ec;
    border-radius: 1em;
    background: #f8f9fc;
    box-shadow: 0 .9em 2.5em rgba(24, 37, 79, .08);
}

.screen-header {
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1em;
    background: var(--navy);
    color: #fff;
}

    .screen-header strong {
        font-size: 0.9em;
    }

    .screen-header span {
        color: var(--orange);
    }

.screen-content {
    padding: 1em;
}

.screen-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5em;
}

    .screen-stats > div {
        position: relative;
        min-width: 0;
        min-height: 5em;
        padding: .7em;
        border: .0625em solid var(--border);
        border-radius: .55em;
        background: #fff;
    }

.screen-stat-icon {
    position: absolute;
    top: .65em;
    left: .65em;
    width: 1.7em;
    height: 1.7em;
    border-radius: .4em;
    font-size: 0.78em;
}

.screen-stats small {
    display: block;
    color: #8d93a1;
    font-size: 0.66em;
}

.screen-stats strong {
    display: block;
    margin-top: .9em;
    color: var(--navy);
    font-size: 1.14em;
    font-weight: 900;
}

.large-chart {
    position: relative;
    width: 100%;
    height: 11em;
    margin-top: .6em;
    overflow: hidden;
    border: .0625em solid var(--border);
    border-radius: .6em;
    background: #fff;
}

.large-chart-grid {
    position: absolute;
    inset: 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .large-chart-grid span {
        height: .0625em;
        background: #eef0f4;
    }

.large-chart svg {
    position: absolute;
    inset: 1.2em 1em 1em;
    width: calc(100% - 2em);
    height: calc(100% - 2.2em);
}

.inventory-table {
    width: 100%;
    max-width: 100%;
    padding: 1em;
    overflow: hidden;
}

.inventory-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, .6fr) minmax(0, .7fr);
    gap: .5em;
    align-items: center;
    min-width: 0;
    margin-bottom: .4em;
    padding: .7em;
    border: .0625em solid var(--border);
    border-radius: .5em;
    background: #fff;
    color: #697184;
    font-size: 0.816em;
}

    .inventory-row > * {
        min-width: 0;
        overflow-wrap: anywhere;
    }

.inventory-head {
    background: #f4f6fa;
    color: var(--navy);
    font-weight: 900;
}

.inventory-row strong {
    color: var(--navy);
}

.inventory-row b {
    width: max-content;
    max-width: 100%;
    padding: .25em .45em;
    border-radius: .35em;
    font-size: 0.96em;
}

.status-green {
    background: var(--green-soft);
    color: var(--green);
}

.status-orange {
    background: var(--orange-soft);
    color: var(--orange-dark);
}

.sales-screen {
    width: 100%;
    max-width: 100%;
    padding: 1.25em;
    overflow: hidden;
}

.sales-chart {
    width: 100%;
    height: 13em;
    display: flex;
    align-items: flex-end;
    gap: .7em;
    padding: 1em 1em 0;
    border-bottom: .0625em solid #dde1e9;
}

.sales-column {
    position: relative;
    flex: 1;
    min-width: 0;
    height: var(--height);
    border-radius: .35em .35em .05em .05em;
    background: var(--navy);
    transform-origin: bottom;
    animation: columnGrow .8s ease both;
}

    .sales-column:nth-child(even) {
        background: var(--orange);
    }

    .sales-column span {
        position: absolute;
        top: -1.1em;
        right: 50%;
        color: #9298a6;
        transform: translateX(50%);
        font-size: 0.66em;
    }

@keyframes columnGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.sales-months {
    display: flex;
    justify-content: space-between;
    padding: .4em 1em 0;
    color: #999fac;
    font-size: 0.6em;
}

.slider-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin-top: 1em;
}

.slider-button {
    width: 2.6em;
    height: 2.6em;
    display: grid;
    place-items: center;
    border: .0625em solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
}

    .slider-button:hover {
        background: var(--navy);
        color: #fff;
    }

.slider-dots {
    display: flex;
    gap: .35em;
}

    .slider-dots button {
        width: .45em;
        height: .45em;
        padding: 0;
        border: 0;
        border-radius: 2em;
        background: #d3d6de;
        transition: width .3s ease;
    }

        .slider-dots button.active {
            width: 1.5em;
            background: var(--orange);
        }


/* =========================================================
   القطاعات وطريقة العمل
========================================================= */

.industry-card {
    padding: 1.3em 1em;
    border: .0625em solid var(--border);
    border-radius: .9em;
    background: #fff;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .industry-card:hover {
        transform: translateY(-.3em);
        box-shadow: var(--shadow-sm);
    }

.industry-icon {
    width: 3em;
    height: 3em;
    margin: 0 auto .8em;
    border-radius: .75em;
}

.industry-card h3 {
    margin: 0 0 .35em;
    color: var(--navy);
    font-size: 1.14em;
    font-weight: 900;
}

.industry-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.864em;
    line-height: 1.8;
}

.workflow {
    position: relative;
    max-width: 62em;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9em;
    margin: 2.7em auto 0;
}

.workflow-line {
    position: absolute;
    top: 1.5em;
    right: 12%;
    left: 12%;
    height: .0625em;
    background: #e0e3ea;
}

.workflow-item {
    position: relative;
    z-index: 2;
    min-width: 0;
    text-align: center;
}

.workflow-number {
    width: 3em;
    height: 3em;
    display: grid;
    place-items: center;
    margin: 0 auto .9em;
    border: .35em solid #fff;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 0 0 .0625em #e0e3ea;
    font-size: 0.84em;
    font-weight: 900;
}

.workflow-card {
    height: calc(100% - 3.9em);
    padding: 1.2em .9em;
    border: .0625em solid var(--border);
    border-radius: .85em;
    background: #fff;
}

.workflow-icon {
    width: 2.75em;
    height: 2.75em;
    margin: 0 auto .75em;
    border-radius: .65em;
}

.workflow-card h3 {
    margin: 0 0 .35em;
    color: var(--navy);
    font-size: 1.14em;
    font-weight: 900;
}

.workflow-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.864em;
    line-height: 1.8;
}


/* =========================================================
   الباقات
========================================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1em;
    margin-top: 2.4em;
}

.price-card {
    position: relative;
    height: 100%;
    padding: 1.5em;
    overflow: hidden;
    border: .0625em solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .price-card:hover {
        transform: translateY(-.4em);
        box-shadow: var(--shadow-md);
    }

    .price-card.featured {
        border-color: rgba(240, 160, 0, .5);
    }

.popular-label {
    position: absolute;
    top: .85em;
    left: .85em;
    padding: .35em .55em;
    border-radius: .4em;
    background: var(--orange-soft);
    color: var(--orange-dark);
    font-size: 0.78em;
    font-weight: 900;
}

.price-card-top {
    display: flex;
    align-items: center;
    gap: .6em;
    margin-bottom: 1em;
}

.price-icon {
    width: 2.75em;
    height: 2.75em;
    border-radius: .65em;
}

.plan-type {
    color: var(--navy);
    font-size: 0.984em;
    font-weight: 900;
}

.price-card h3 {
    margin: 0 0 .4em;
    color: var(--navy);
    font-size: 1.5em;
    font-weight: 900;
}

.plan-description {
    min-height: 3.3em;
    margin: 0;
    color: var(--text-light);
    font-size: 0.936em;
    line-height: 1.8;
}

.price {
    min-height: 4.7em;
    display: flex;
    align-items: flex-end;
    gap: .55em;
    margin-top: 1em;
}

    .price > strong {
        color: var(--navy);
        font-size: 3.24em;
        font-weight: 900;
        line-height: 1;
    }

    .price > div {
        padding-bottom: .25em;
    }

        .price > div span {
            color: var(--text-light);
            font-size: 0.864em;
        }

.custom-price {
    align-items: center;
}

    .custom-price > strong {
        font-size: 2.1em;
    }

.price-divider {
    height: .0625em;
    margin: 1em 0;
    background: var(--border);
}

.price-card ul {
    display: grid;
    gap: .65em;
    margin-bottom: 1.3em;
}

.price-card li {
    color: #626a7d;
    font-size: 0.936em;
}

    .price-card li i {
        margin-left: .35em;
        color: var(--green);
    }

.price-button {
    width: 100%;
    min-height: 2.8em;
    border: .0625em solid #dce0e8;
    border-radius: .6em;
    background: #fff;
    color: var(--navy);
    font-size: 0.936em;
    font-weight: 900;
}

    .price-button:hover,
    .featured-button {
        border-color: var(--navy);
        background: var(--navy);
        color: #fff;
    }


/* =========================================================
   الأسئلة الشائعة
========================================================= */

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 3em;
}

.faq-intro {
    min-width: 0;
}

.faq-contact {
    max-width: 22em;
    display: flex;
    align-items: center;
    gap: .7em;
    margin-top: 1.3em;
    padding: .8em;
    border: .0625em solid var(--border);
    border-radius: .7em;
}

    .faq-contact > span {
        width: 2.5em;
        height: 2.5em;
        display: grid;
        place-items: center;
        flex: 0 0 2.5em;
        border-radius: .6em;
        background: var(--orange-soft);
        color: var(--orange-dark);
    }

    .faq-contact > div {
        flex: 1;
        min-width: 0;
    }

    .faq-contact small {
        display: block;
        color: var(--text-light);
        font-size: 0.84em;
    }

    .faq-contact strong {
        display: block;
        color: var(--navy);
        font-size: 1.02em;
    }

.custom-accordion {
    min-width: 0;
}

.accordion-item {
    overflow: hidden;
    margin-bottom: .55em;
    border: .0625em solid var(--border);
    border-radius: .7em;
    background: #fff;
}

.accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    padding: 1em;
    border: 0;
    background: #fff;
    color: var(--navy);
    text-align: right;
    font-size: 1.02em;
    font-weight: 900;
}

    .accordion-button i {
        transition: transform .3s ease;
    }

.accordion-item.active .accordion-button {
    background: #f8f9fc;
}

    .accordion-item.active .accordion-button i {
        transform: rotate(45deg);
    }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.accordion-body {
    padding: .2em 1em 1em;
    color: var(--text-light);
    font-size: 0.96em;
    line-height: 1.9;
}


/* =========================================================
   التواصل
========================================================= */

.contact-section {
    width: 100%;
    padding: 2em 0 5em;
    overflow: hidden;
    background: #fff;
}

.contact-panel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2.5em;
    border-radius: 1.3em;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 1.5em 3.7em rgba(24, 37, 79, .18);
}

.contact-pattern {
    position: absolute;
    top: -8em;
    left: -6em;
    width: 23em;
    height: 23em;
    border: 4em solid rgba(255, 255, 255, .035);
    border-radius: 50%;
}

.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, .5fr);
    align-items: center;
    gap: 2em;
}

.contact-label {
    display: inline-block;
    margin-bottom: .5em;
    color: var(--orange);
    font-size: 0.9em;
    font-weight: 900;
}

.contact-panel h2 {
    max-width: 22em;
    margin: 0 0 .45em;
    color: #fff;
    font-size: 2.16em;
    font-weight: 900;
    line-height: 1.55;
}

.contact-panel p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 0.96em;
}

.contact-buttons {
    display: grid;
    gap: .6em;
}

.contact-primary,
.contact-secondary {
    min-height: 3em;
    padding: 0 1em;
    border-radius: .65em;
    font-size: 0.96em;
    font-weight: 900;
}

.contact-primary {
    background: var(--orange);
    color: var(--navy-dark);
}

.contact-secondary {
    border: .0625em solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}


/* =========================================================
   التذييل
========================================================= */

.main-footer {
    width: 100%;
    padding: 3.5em 0 1.3em;
    overflow: hidden;
    border-top: .0625em solid var(--border);
    background: #f8f9fc;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, .7fr) minmax(0, .7fr) minmax(0, 1fr);
    gap: 2em;
}

    .footer-grid > * {
        min-width: 0;
    }

.footer-brand {
    margin-bottom: .9em;
}

.footer-about p {
    max-width: 31em;
    margin: 0;
    color: var(--text-light);
    font-size: 0.936em;
    line-height: 2;
}

.footer-social {
    display: flex;
    gap: .4em;
    margin-top: 1em;
}

    .footer-social a {
        width: 2.2em;
        height: 2.2em;
        display: grid;
        place-items: center;
        border: .0625em solid var(--border);
        border-radius: .55em;
        background: #fff;
        color: var(--navy);
    }

.footer-links {
    display: grid;
    align-content: start;
    gap: .55em;
}

    .footer-links h5,
    .footer-contact h5 {
        margin: 0 0 .5em;
        color: var(--navy);
        font-size: 1.08em;
        font-weight: 900;
    }

    .footer-links a,
    .footer-contact > div {
        color: var(--text-light);
        font-size: 0.9em;
    }

.footer-contact {
    display: grid;
    align-content: start;
    gap: .7em;
}

    .footer-contact > div {
        display: flex;
        align-items: center;
        gap: .5em;
        min-width: 0;
    }

    .footer-contact i {
        width: 1.5em;
        flex: 0 0 1.5em;
        color: var(--orange-dark);
    }

    .footer-contact span {
        min-width: 0;
        overflow-wrap: anywhere;
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    margin-top: 2.5em;
    padding-top: 1em;
    border-top: .0625em solid var(--border);
    color: #979ca8;
    font-size: 0.816em;
}

    .footer-bottom > div {
        display: flex;
        flex-wrap: wrap;
        gap: .5em;
    }


/* =========================================================
   الأزرار العائمة
========================================================= */

.floating-whatsapp {
    position: fixed;
    left: 0.7em;
    bottom: 0.7em;
    z-index: 100;
    width: 2em;
    height: 2em;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    box-shadow: 0 .75em 1.8em rgba(21, 149, 82, .25);
    font-size: 1.5em;
}
    .floating-whatsapp i {
        font-size:1.5em;
    }

.back-to-top {
    position: fixed;
    right: 0.9em;
    bottom: 0.9em;
    z-index: 100;
    width: 2.7em;
    height: 2.7em;
    display: grid;
    place-items: center;
    border: .0625em solid var(--border);
    border-radius: .6em;
    background: #fff;
    color: var(--navy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(.6em);
    transition: .2s ease;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


/* =========================================================
   القائمة المتجاوبة
========================================================= */

@media (max-width: 74.99875em) {
    .menu-toggler {
        display: block;
    }

    .main-menu-wrapper {
        position: absolute;
        top: calc(100% + .65em);
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 6em);
        overflow-y: auto;
        padding: .9em;
        border: .0625em solid var(--border);
        border-radius: .8em;
        background: #fff;
        box-shadow: var(--shadow-md);
    }

        .main-menu-wrapper.menu-open {
            display: block;
            animation: menuIn .25s ease both;
        }

    .main-menu {
        display: grid;
        justify-content: stretch;
        gap: .15em;
    }

    .nav-link {
        width: 100%;
        padding: .75em;
        white-space: normal;
        font-size: 1.1em;
    }

        .nav-actions .button {
            width: 100%;
        }

    @keyframes menuIn {
        from {
            opacity: 0;
            transform: translateY(-.5em);
        }

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


@media (max-width: 61.99875em) {
    .top-bar {
        display: none !important;
    }

    .main-navbar,
    .main-navbar.scrolled {
        top: 0;
    }

    .hero-section {
        min-height: auto;
        padding-top: 7em;
    }

    .grid-two {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .hero-content h1 {
        max-width: 12em;
        font-size: 3.6em;
    }

    .dashboard-window,
    .dashboard-visual:hover .dashboard-window {
        transform: none;
    }

    .dashboard-visual {
        width: 100%;
        max-width: 47em;
        margin-inline: auto;
    }

    .features-grid,
    .modules-grid,
    .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-line {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-card:last-child {
        grid-column: 1 / -1;
        max-width: 31em;
        margin-inline: auto;
    }

    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 47.99875em) {

    body {
        font-size: 15px;
    }

    .container {
        width: calc(100% - 2em);
    }

    .section {
        padding: 4em 0;
    }

    .hero-section {
        padding-top: 6.5em;
        padding-bottom: 4em;
    }

    .hero-content h1 {
        max-width: 100%;
        font-size: 3.06em;
    }

        .hero-content h1 span {
            width: auto;
        }

    .hero-description {
        max-width: 100%;
    }

    .dashboard-content {
        padding: .8em;
    }

    .dashboard-stats,
    .dashboard-lower,
    .screen-stats {
        grid-template-columns: 1fr;
    }

    .floating-notice {
        display: none;
    }

    .quick-strip-grid,
    .features-grid,
    .modules-grid,
    .industries-grid,
    .workflow,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .quick-item {
        border-left: 0;
        border-bottom: .0625em solid var(--border);
    }

        .quick-item:last-child {
            border-bottom: 0;
        }

    .price-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .showcase-slide {
        padding: 1.5em;
    }

    .showcase-copy h3 {
        max-width: 100%;
        font-size: 1.86em;
    }

    .inventory-row {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, .65fr) minmax(0, .7fr);
        font-size: 0.744em;
    }

        .inventory-row > :nth-child(2) {
            display: none;
        }

    .sales-chart {
        height: 11em;
        gap: .35em;
        padding-right: .4em;
        padding-left: .4em;
    }

    .sales-months {
        padding-right: .4em;
        padding-left: .4em;
        font-size: 0.504em;
    }

    .section-heading h2,
    .faq-intro h2 {
        font-size: 2.16em;
    }

    .contact-panel {
        padding: 1.6em;
    }

        .contact-panel h2 {
            font-size: 1.86em;
        }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 35.99875em) {
    .container {
        width: calc(100% - 1.5em);
    }

    .navbar-inner {
        gap: .5em;
    }

    .action-flex {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }
    /*        .action-flex div {
            width:100%;
        }*/
    .brand-icon {
        width: 2.45em;
        height: 2.45em;
    }

    .brand-info strong {
        font-size: 1.14em;
    }

    .brand-info small {
        font-size: 0.696em;
    }

    .hero-section {
        padding-top: 6em;
    }

    .hero-content h1 {
        font-size: 2.58em;
    }

    .hero-actions {
        flex-wrap: nowrap;
    }

        .hero-actions .button {
            width: 100%;
        }

    .hero-benefits {
        flex-wrap: nowrap;
    }

    .dashboard-heading {
        align-items: flex-start;
    }

    .dashboard-date {
        font-size: 0.624em;
    }

    .dashboard-content {
        padding: .65em;
    }

    .mini-stat {
        min-height: 5.5em;
    }

    .section-heading h2,
    .faq-intro h2 {
        font-size: 1.92em;
    }

    .showcase-slide {
        padding: 1.15em;
    }

    .inventory-table {
        padding: .65em;
    }

    .inventory-row {
        gap: .2em;
        padding: .5em .25em;
        font-size: 0.624em;
    }

    .sales-screen {
        padding: .75em;
    }

    .sales-chart {
        height: 9.5em;
    }

    .contact-panel {
        padding: 1.35em;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        left: .8em;
        bottom: .8em;
    }

    .back-to-top {
        right: .8em;
        bottom: .8em;
    }

    .nav-demo {display:none;}
}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
