﻿:root {
    --gold: #d9a400;
    --gold2: #f5c400;
    --gold-dark: #9b7200;
    --black: #070707;
    --panel: #111;
    --line: rgba(255,255,255,.10);
    --text: #f7f7f7;
    --muted: #9c9c9c;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: "Vazirmatn",Tahoma,sans-serif;
    background: #070707;
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none
}

.text-gold {
    color: var(--gold2) !important
}

/* Header */
/*.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1050;
    background: linear-gradient(180deg,rgba(0,0,0,.94),rgba(0,0,0,.45));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
*/
/* =========================
   COMPANY LOGO
   ========================= */

.brand-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .brand-logo img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        filter: brightness(1.15) contrast(0.95);
        transition: .25s ease;
    }

    .brand-logo:hover img {
        filter: brightness(1.25) contrast(0.95);
        transform: scale(1.04);
    }

.brand-fa {
    font-size: 16px;
    font-weight: 800;
    color: var(--gold2);
    line-height: 1.1
}

.brand-en {
    font-size: 9px;
    letter-spacing: 1.3px;
    color: #aaa
}

.navbar .nav-link {
    color: #d2d2d2;
    font-size: 13px;
    padding: .8rem .85rem !important;
    transition: .25s;
}

    .navbar .nav-link:hover, .navbar .nav-link.active {
        color: var(--gold2)
    }

.btn-gold {
    background: var(--gold2);
    border-color: var(--gold2);
    color: #090909;
    font-weight: 800;
    border-radius: 7px;
    padding: .7rem 1.1rem;
}

    .btn-gold:hover {
        background: #ffd72e;
        border-color: #ffd72e;
        color: #050505;
        transform: translateY(-2px)
    }

.btn-dark-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.02);
    border-radius: 7px;
    padding: .7rem 1.1rem;
}

    .btn-dark-outline:hover {
        color: var(--gold2);
        border-color: var(--gold2)
    }

/* Hero */
.hero {
    min-height: 820px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg,rgba(0,0,0,.98) 0%,rgba(0,0,0,.70) 43%,rgba(0,0,0,.25) 100%), url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=2200&q=90") center/cover;
}

    .hero:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg,#070707 0%,transparent 20%,transparent 80%,#070707 100%);
    }

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: linear-gradient(rgba(245,196,0,.45) 1px,transparent 1px), linear-gradient(90deg,rgba(245,196,0,.45) 1px,transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 18s linear infinite;
}

@keyframes gridMove {
    to {
        background-position: 80px 80px
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px
}

.eyebrow {
    color: var(--gold2);
    font-weight: 700;
    font-size: 14px
}

    .eyebrow:before {
        content: "";
        display: inline-block;
        width: 38px;
        height: 2px;
        background: var(--gold2);
        margin-left: 10px;
        vertical-align: middle;
    }

.hero h1 {
    font-size: clamp(42px,5vw,72px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px
}

    .hero h1 span {
        color: var(--gold2)
    }

.hero p {
    color: #c2c2c2;
    font-size: 16px;
    max-width: 650px
}

.hero-stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.stat {
    border-left: 1px solid rgba(255,255,255,.08)
}

    .stat:last-child {
        border-left: 0
    }

    .stat b {
        font-size: 24px;
        color: var(--gold2)
    }

    .stat small {
        font-size: 10px;
        color: #999
    }

.scan-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20%;
    width: 2px;
    background: linear-gradient(transparent,var(--gold2),transparent);
    box-shadow: 0 0 30px 4px rgba(245,196,0,.25);
    opacity: .5;
    animation: scan 7s ease-in-out infinite;
    z-index: 1;
}

@keyframes scan {
    0%,100% {
        transform: translateX(-180px);
        opacity: 0
    }

    35% {
        opacity: .65
    }

    65% {
        opacity: .15
    }

    100% {
        transform: translateX(180px)
    }
}

/* General sections */
.section {
    padding: 100px 0
}

.section-dark {
    background: #090909
}

.section-title {
    font-size: 30px;
    font-weight: 800
}

    .section-title:after {
        content: "";
        display: inline-block;
        width: 45px;
        height: 3px;
        background: var(--gold2);
        margin-right: 14px;
        vertical-align: middle;
    }

.section-sub {
    color: #888;
    font-size: 13px
}

/* Cards */
.service-card {
    background: linear-gradient(145deg,#161616,#0d0d0d);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: .3s;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-5px);
        border-color: rgba(245,196,0,.45)
    }

.service-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(245,196,0,.35);
    color: var(--gold2);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 21px;
}

.service-card p {
    color: #888;
    font-size: 12px
}

.project-card {
    background: #111;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: .35s;
    height: 100%;
}

    .project-card:hover {
        transform: translateY(-6px);
        border-color: rgba(245,196,0,.5)
    }

.project-image {
    height: 230px;
    position: relative;
    background-size: cover;
    background-position: center
}

    .project-image:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(transparent 40%,#111);
    }

.p1 {
    background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1000&q=85")
}

.p2 {
    background-image: url("https://images.unsplash.com/photo-1586864387967-d02ef85d93e8?auto=format&fit=crop&w=1000&q=85")
}

.p3 {
    background-image: url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1000&q=85")
}

.p4 {
    background-image: url("https://images.unsplash.com/photo-1590486803833-1c5dc8ddd4c8?auto=format&fit=crop&w=1000&q=85")
}

.project-content {
    margin-top: -16px;
    position: relative;
    z-index: 2
}

/* ================= OVRIX ================= */
.ovrix-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid rgba(245,196,0,.18);
    border-bottom: 1px solid rgba(245,196,0,.18);
    background: radial-gradient(circle at 70% 45%,rgba(245,196,0,.14),transparent 27%), linear-gradient(115deg,#050607 0%,#0b0e10 48%,#080807 100%);
}

/* Digital / PCB background */
.pcb-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .8;
    background: linear-gradient(90deg,transparent 0 49.6%,rgba(245,196,0,.06) 49.7% 50.3%,transparent 50.4%), linear-gradient(0deg,transparent 0 49.6%,rgba(245,196,0,.045) 49.7% 50.3%,transparent 50.4%), radial-gradient(circle at 18% 25%,rgba(245,196,0,.11) 0 2px,transparent 3px), radial-gradient(circle at 82% 70%,rgba(245,196,0,.10) 0 2px,transparent 3px);
    background-size: 180px 180px,180px 180px,100% 100%,100% 100%;
}

.pcb-lines {
    position: absolute;
    inset: -20%;
    z-index: -1;
    opacity: .42;
    background: linear-gradient(90deg,transparent 0 17%,rgba(245,196,0,.45) 17.1% 17.25%,transparent 17.35% 37%,rgba(245,196,0,.22) 37.1% 37.2%,transparent 37.3% 61%,rgba(245,196,0,.35) 61.1% 61.25%,transparent 61.35% 82%,rgba(245,196,0,.25) 82.1% 82.2%,transparent 82.3%), linear-gradient(0deg,transparent 0 23%,rgba(245,196,0,.3) 23.1% 23.2%,transparent 23.3% 47%,rgba(245,196,0,.18) 47.1% 47.2%,transparent 47.3% 73%,rgba(245,196,0,.35) 73.1% 73.25%,transparent 73.35%);
    transform: rotate(-8deg);
    animation: pcbDrift 22s linear infinite;
}

@keyframes pcbDrift {
    0% {
        transform: translate3d(-2%,0,0) rotate(-8deg)
    }

    50% {
        transform: translate3d(2%,1%,0) rotate(-7deg)
    }

    100% {
        transform: translate3d(-2%,0,0) rotate(-8deg)
    }
}

.circuit {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg,transparent,var(--gold2),transparent);
    box-shadow: 0 0 8px rgba(245,196,0,.6);
    opacity: .5;
    animation: circuitMove 5s linear infinite;
}

.c1 {
    width: 260px;
    top: 24%;
    left: 2%
}

.c2 {
    width: 340px;
    top: 68%;
    right: 0;
    animation-delay: 1.5s
}

.c3 {
    width: 180px;
    top: 48%;
    left: 45%;
    animation-delay: 2.4s
}

@keyframes circuitMove {
    0% {
        transform: translateX(-40px);
        opacity: 0
    }

    25% {
        opacity: .7
    }

    75% {
        opacity: .25
    }

    100% {
        transform: translateX(80px);
        opacity: 0
    }
}

.chip {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid var(--gold2);
    background: #090909;
    box-shadow: 0 0 15px rgba(245,196,0,.35);
    transform: rotate(45deg);
}

.chip1 {
    left: 20%;
    top: 25%
}

.chip2 {
    right: 18%;
    top: 64%
}

.chip3 {
    left: 58%;
    bottom: 14%
}

.ovrix-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(245,196,0,.06);
    filter: blur(80px);
    right: 20%;
    top: 15%;
    z-index: -1;
}

.ovrix-logo {
    font-size: 78px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -5px;
}

    .ovrix-logo span {
        color: var(--gold2)
    }

.ovrix-copy h3 {
    font-size: 22px
}

.ovrix-copy p {
    color: #9b9b9b;
    font-size: 14px;
    max-width: 560px
}

.dashboard {
    background: rgba(4,6,8,.76);
    border: 1px solid rgba(245,196,0,.22);
    border-radius: 17px;
    padding: 10px;
    box-shadow: 0 30px 100px rgba(0,0,0,.65),0 0 50px rgba(245,196,0,.05);
    transform: perspective(1300px) rotateY(6deg);
    transition: .5s;
    backdrop-filter: blur(10px);
}

    .dashboard:hover {
        transform: perspective(1300px) rotateY(0)
    }

.screen {
    min-height: 340px;
    border-radius: 10px;
    padding: 18px;
    background: linear-gradient(145deg,#0e1419,#06090b);
    border: 1px solid rgba(255,255,255,.07);
}

.screen-card {
    background: #0b1014;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px;
    min-height: 140px;
}

.mini-chart {
    height: 120px;
    display: flex;
    align-items: end;
    gap: 7px;
}

    .mini-chart span {
        flex: 1;
        background: linear-gradient(180deg,#f5c400,#715600);
        border-radius: 4px 4px 0 0;
        animation: chart 2.2s ease-in-out infinite alternate;
    }

        .mini-chart span:nth-child(1) {
            height: 45%
        }

        .mini-chart span:nth-child(2) {
            height: 72%
        }

        .mini-chart span:nth-child(3) {
            height: 55%
        }

        .mini-chart span:nth-child(4) {
            height: 88%
        }

        .mini-chart span:nth-child(5) {
            height: 68%
        }

        .mini-chart span:nth-child(6) {
            height: 94%
        }

@keyframes chart {
    to {
        transform: scaleY(.78)
    }
}

.health-ring {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    margin: 8px auto;
    border: 12px solid #24282b;
    border-top-color: var(--gold2);
    border-right-color: var(--gold2);
    transform: rotate(-25deg);
    animation: ring 5s linear infinite;
}

@keyframes ring {
    to {
        transform: rotate(335deg)
    }
}

/* Clients/certs/footer */
.carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 0;
    margin: 0 5px;
    background: #777;
}

.carousel-indicators .active {
    background: var(--gold2)
}

.carousel-item {
    transition: transform .65s ease-in-out
}

.client-box {
    height: 95px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #101010;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    overflow: hidden;
    padding:0px;
}

    .client-box:hover {
        color: var(--gold2);
        border-color: rgba(245,196,0,.4)
    }
    .client-box img {
        width: 100%;
        height: 78px;
        object-fit: contain;
        display: block;
        padding: 0 3px;
    }
.certificate {
    width: 100%;
    height: 198px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #121212;
    transition: .3s;
}

.certificate-inner {
    width: 100%;
    height: 180px;
    /*border: 3px double #9c8750;*/
    background:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .certificate-inner img {
        width: 210px;
        height: 180px;
        object-fit: contain;
        display: block;
    }
.certificate:hover {
    transform: translateY(-5px);
    border-color: rgba(245,196,0,.45);
}
footer {
    background: #0b0b0b;
    border-top: 1px solid var(--line)
}

.footer-title {
    color: var(--gold2);
    font-weight: 800
}

.footer-text, .footer-link {
    font-size: 12px;
    color: #858585
}

    .footer-link:hover {
        color: #fff
    }

.footer-bottom {
    border-top: 1px solid var(--line);
    color: #666;
    font-size: 11px
}


@media(max-width:991.98px) {
    .navbar-collapse {
        background: rgba(8,8,8,.98);
        padding: 15px;
        border-radius: 0 0 10px 10px;
    }

    .dashboard {
        transform: none
    }

    .hero {
        min-height: 760px
    }
    /* Hide Bootstrap desktop navigation */
    #mainNav {
        display: none !important;
    }

    
}

@media(max-width:575.98px) {
    .hero h1 {
        font-size: 41px
    }

    .hero p {
        font-size: 14px
    }

    .ovrix-logo {
        font-size: 58px
    }

    .section {
        padding: 70px 0
    }

    .stat {
        padding: .7rem .8rem !important
    }

        .stat b {
            font-size: 18px
        }

        .stat small {
            font-size: 9px
        }
}
/* =========================================
   HERO - CLEAN TWO COLUMN LAYOUT
   ========================================= */

@media (min-width: 992px) {

    .hero {
        min-height: 820px;
        position: relative;
        overflow: hidden;
    }

        .hero > .container {
            position: relative;
            z-index: 3;
        }

    .hero-main {
        min-height: 700px;
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        align-items: center;
        gap: 35px;
        direction: ltr;
    }


    /* =========================
       متن هیرو - سمت راست
       ========================= */

    .hero-content {
        grid-column: 2;
        width: 100%;
        max-width: 620px;
        margin: 0;
        padding-top: 50px;
        direction: rtl;
        position: relative;
        z-index: 4;
    }


    /* =========================
       پنل ماشین‌آلات - سمت چپ
       ========================= */

    .hero-machine-panel {
        grid-column: 1;
        width: 145%;
        max-width: none;
        padding: 24px;
        grid-column: 1;
        max-width: none;
        position: relative;
        background: linear-gradient(145deg, rgba(17,19,21,.94), rgba(5,6,7,.94));
        border: 1px solid rgba(245,196,0,.30);
        border-radius: 14px;
        box-shadow: 0 25px 70px rgba(0,0,0,.55), inset 0 0 30px rgba(245,196,0,.025);
        direction: rtl;
        z-index: 3;
        overflow: hidden;
        transform: translateX(13%);
    }


        .hero-machine-panel::before {
            content: "";
            position: absolute;
            top: -1px;
            left: 35px;
            width: 100px;
            height: 2px;
            background: var(--gold2);
        }

        /* خطوط تکنولوژیک گوشه پنل */

        .hero-machine-panel::after {
            content: "";
            position: absolute;
            right: 18px;
            bottom: 18px;
            width: 90px;
            height: 90px;
            border-right: 1px solid rgba(245,196,0,.25);
            border-bottom: 1px solid rgba(245,196,0,.25);
            pointer-events: none;
        }


    /* عنوان پنل */

    .hero-panel-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 16px;
    }


    .hero-panel-kicker {
        display: block;
        direction: ltr;
        color: var(--gold2);
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 1px;
    }


    .hero-panel-top small {
        display: block;
        margin-top: 4px;
        color: #777;
        font-size: 9px;
        direction: ltr;
        letter-spacing: .8px;
    }


    .hero-live {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--gold2);
        font-size: 10px;
        font-weight: 700;
        direction: ltr;
    }


        .hero-live span {
            width: 7px;
            height: 7px;
            display: inline-block;
            border-radius: 50%;
            background: var(--gold2);
            box-shadow: 0 0 8px rgba(245,196,0,.8);
            animation: heroLivePulse 1.8s infinite;
        }


    @keyframes heroLivePulse {

        0%,100% {
            opacity: 1;
        }

        50% {
            opacity: .35;
        }
    }


    /* =========================
       سه ماشین
       ========================= */

    .hero-machines {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
        overflow: hidden;
        padding: 4px 2px 8px;
        direction: rtl;
    }


    .hero-machine-card {
        position: relative;
        width: 100%;
        min-width: 0;
        height: 225px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 8px;
        background: #090a0b;
        transition: transform .35s ease, border-color .35s ease;
    }


    .hero-machine-title {
        position: absolute;
        font-size: 10px;
        font-weight: 700;
        right: 8px;
        left: 8px;
        top: 10px;
        z-index: 5;
        font-size: 10px;
        font-weight: 700;
        color: #fff;
        text-shadow: 0 2px 6px #000;
    }
    /* کارت فعال بزرگ‌تر */

   

    /* شماره */

    .hero-machine-number {
        position: absolute;
        top: 8px;
        left: 8px;
        z-index: 5;
        font-size: 9px;
        color: rgba(255,255,255,.55);
        font-family: Arial, sans-serif;
    }

        .hero-machine-title span {
            color: var(--gold2);
            margin-left: 4px;
        }


    .hero-machine-image {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }


        .hero-machine-image img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            filter: brightness(.58) contrast(1.12) saturate(.72);
            transition: transform .6s ease, filter .6s ease;
        }


    .hero-machine-card:hover img {
        transform: scale(1.08);
        filter: brightness(.78) contrast(1.12) saturate(.9);
    }


    .hero-image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(0,0,0,.62) 0%, rgba(0,0,0,.05) 40%, rgba(0,0,0,.75) 100% );
    }

    /* وضعیت */

    .hero-card-status {
        position: absolute;
        bottom: 9px;
        right: 9px;
        z-index: 5;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 7px;
        color: rgba(255,255,255,.7);
        direction: ltr;
    }

        .hero-card-status i {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #42c765;
            box-shadow: 0 0 7px rgba(66,199,101,.8);
        }

    /* Navigation */

    .hero-equipment-navigation {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 6px;
    }

        .hero-equipment-navigation > span {
            width: 17px;
            height: 3px;
            border-radius: 3px;
            background: rgba(255,255,255,.22);
        }

            .hero-equipment-navigation > span.active {
                width: 30px;
                background: var(--gold2);
            }


    .hero-equipment-line {
        flex: 1;
        height: 1px;
        background: linear-gradient( 90deg, rgba(245,196,0,.35), transparent );
    }


    .hero-equipment-count {
        margin-right: 7px;
        direction: ltr;
        white-space: nowrap;
    }

        .hero-equipment-count b {
            color: var(--gold2);
            font-size: 14px;
        }

        .hero-equipment-count small {
            color: #666;
            font-size: 7px;
        }


    /* Metrics */

    .hero-machine-stats {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
        margin-top: 10px;
    }


        .hero-machine-stats > div {
            position: relative;
            padding: 9px 10px 10px;
            background: linear-gradient( 145deg, rgba(255,255,255,.045), rgba(255,255,255,.015) );
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 6px;
        }


        .hero-machine-stats span {
            display: block;
            color: #777;
            font-size: 7px;
            direction: ltr;
            letter-spacing: .4px;
        }


        .hero-machine-stats strong {
            display: block;
            margin-top: 3px;
            color: #fff;
            font-size: 21px;
            line-height: 1;
        }


        .hero-machine-stats small {
            display: block;
            margin-top: 4px;
            color: #999;
            font-size: 8px;
        }


    /* Progress */

    .metric-progress {
        height: 2px;
        margin-top: 7px;
        background: rgba(255,255,255,.1);
    }

        .metric-progress i {
            display: block;
            height: 100%;
            background: var(--gold2);
        }


    /* System Status */

    .hero-system-status {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 12px;
        padding-top: 10px;
        border-top: 1px solid rgba(255,255,255,.07);
        font-size: 8px;
    }


    .system-label {
        color: var(--gold2);
        font-size: 7px;
        letter-spacing: .5px;
    }


    .hero-system-status > div {
        display: flex;
        align-items: center;
        gap: 4px;
        color: #999;
    }


    .hero-system-status i {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #42c765;
        box-shadow: 0 0 6px rgba(66,199,101,.7);
    }
    /* =========================
       آمار
       ========================= */

    .hero-machine-stats {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 7px;
        margin-top: 10px;
    }


        .hero-machine-stats > div {
            padding: 9px;
            background: rgba(255,255,255,.025);
            border: 1px solid rgba(255,255,255,.07);
            border-radius: 6px;
        }


        .hero-machine-stats span {
            display: block;
            color: #707070;
            font-size: 8px;
            direction: ltr;
        }


        .hero-machine-stats strong {
            display: block;
            margin-top: 3px;
            color: var(--gold2);
            font-size: 20px;
            line-height: 1;
        }


        .hero-machine-stats small {
            display: block;
            margin-top: 4px;
            color: #999;
            font-size: 9px;
        }


    /* =========================
       وضعیت سیستم
       ========================= */

    .hero-system-status {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 12px;
        padding-top: 10px;
        border-top: 1px solid rgba(255,255,255,.07);
        color: #777;
        font-size: 8px;
    }


        .hero-system-status > div {
            display: flex;
            align-items: center;
            gap: 4px;
            color: #999;
        }


        .hero-system-status i {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #43b95b;
            box-shadow: 0 0 6px rgba(67,185,91,.7);
        }
}


/* =========================================
   تبلت
   ========================================= */

@media (max-width: 1199px) and (min-width: 992px) {

    .hero-main {
        gap: 30px;
    }

    .hero-machine-panel {
        max-width: 500px;
    }

    .hero-machine-card {
        height: 180px;
    }

    .hero h1 {
        font-size: 48px;
    }
}


/* =========================================
   موبایل
   ========================================= */

@media (max-width: 991.98px) {

    .hero-machine-panel {
        display: none;
    }

    .hero-content {
        width: 100%;
    }
}
