﻿html, body {
    overflow-x: hidden;
    background: var(--bg-primary, #070b14);
}

:root {
    --bg-primary: #070b14;
    --bg-secondary: #0c1221;
    --bg-card: #111a2e;
    --bg-card-hover: #162040;
    --accent: #00c8ff;
    --accent-glow: rgba(0, 200, 255, 0.15);
    --accent-secondary: #7b61ff;
    --accent-green: #22c55e;
    --accent-orange: #f59e0b;
    --text-primary: #e8edf5;
    --text-secondary: #8892a4;
    --text-muted: #4a5568;
    --border: rgba(255,255,255,0.06);
    --gradient-hero: linear-gradient(135deg, #00ffea 0%, #7b61ff 50%, #ff6b9d 100%);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


html {
    scroll-behavior: smooth;
    font-size: 16px !important;
}

.rv-scope, .rv-scope *, .rv-scope *::before, .rv-scope *::after {
    margin: 0;
    padding: 0;
}

/* Bootstrap's .container relies on margin:auto for centering and its own
   left/right padding (gutter) for edge spacing on narrow screens; the reset
   above (same specificity, but declared earlier) would otherwise zero both
   out — centering breaks (box pins to the RTL start/right edge) and content
   below the container's max-width breakpoint (i.e. any mobile viewport)
   touches the screen edge with no breathing room. */
.rv-scope .container,
.rv-scope .container-fluid,
.rv-scope .container-sm,
.rv-scope .container-md,
.rv-scope .container-lg,
.rv-scope .container-xl,
.rv-scope .container-xxl {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Same problem as .container above, this time for Bootstrap modals: the
   reset zeroes .modal-dialog's centering margin (pins it to the top-right
   instead of centered) and strips .modal-header/.modal-body/.modal-footer's
   internal padding (content runs edge-to-edge, looks broken). Restore both. */
.rv-scope .modal-dialog {
    margin: 1.75rem auto;
}

.rv-scope .modal-header,
.rv-scope .modal-footer {
    padding: 1rem;
}

.rv-scope .modal-body {
    padding: 1rem;
}

.rv-scope {
    font-family: 'Vazirmatn', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    direction: rtl;
}

/* full-bleed breakout: any full-redesign page wraps its content in .rv-scope
   directly under RenderBody(), which lives inside Bootstrap's constrained
   .container > .row. Break every such wrapper out to the full viewport width
   so its dark background reaches both edges, matching the fixed navbar above it. */
.container.marketing > .row {
    display: block;
}

.container.marketing > .row > * {
    width: 100%;
}

.container.marketing > .row > .rv-scope {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.rv-scope-top::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.rv-scope a {
    text-decoration: none;
    color: inherit;
}

.rv-scope ul {
    list-style: none;
}

/* ===== NAVIGATION ===== */
.rv-scope .navbar {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: var(--transition);
    background: rgba(7, 11, 20, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

    .rv-scope .navbar.navbar-on-hero {
        background: transparent;
        border-bottom-color: transparent;
        backdrop-filter: none;
    }

        .rv-scope .navbar.navbar-on-hero.scrolled {
            background: rgba(7, 11, 20, 0.92);
            backdrop-filter: blur(20px);
            border-bottom-color: var(--border);
        }

    .rv-scope .navbar.scrolled {
        padding: 0.7rem 2rem;
    }

.rv-scope .navbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rv-scope .logo {
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.rv-scope .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

    .rv-scope .nav-links > li > a,
    .rv-scope .nav-links > li.nav-more > a {
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--text-secondary);
        transition: var(--transition);
        position: relative;
    }

    .rv-scope .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        right: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: var(--transition);
    }

    .rv-scope .nav-links a:hover {
        color: var(--text-primary);
    }

    .rv-scope .nav-links > li > a:hover::after {
        width: 100%;
    }

/* --- "سایر" dropdown --- */
.rv-scope .nav-more {
    position: relative;
}

    .rv-scope .nav-more > a {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        cursor: pointer;
    }

        .rv-scope .nav-more > a .caret {
            font-size: 0.65rem;
            transition: var(--transition);
            display: inline-block;
        }

    .rv-scope .nav-more.open > a .caret,
    .rv-scope .nav-more:hover > a .caret {
        transform: rotate(180deg);
    }

.rv-scope .nav-more-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 270px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.6rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 10;
}

.rv-scope .nav-more.open .nav-more-menu,
.rv-scope .nav-more:hover .nav-more-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rv-scope .nav-more-menu li a {
    display: block;
    padding: 0.55rem 0.7rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    border-radius: 8px;
}

    .rv-scope .nav-more-menu li a:hover {
        background: rgba(0, 200, 255, 0.08);
        color: var(--text-primary);
    }

.rv-scope .nav-more-menu li + li {
    margin-top: 2px;
}

.rv-scope .nav-more-menu .nav-more-divider {
    height: 1px;
    background: var(--border);
    margin: 0.4rem 0.2rem;
}

/* Nav CTA buttons */
.rv-scope .nav-cta-group {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.rv-scope .nav-cta {
    padding: 0.2rem .5rem;
    border-radius: 8px;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    -webkit-text-fill-color: #fff !important;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

    .rv-scope .nav-cta::after {
        display: none !important;
    }

.rv-scope .nav-cta-consult {
    background: var(--accent);
    -webkit-text-fill-color: var(--bg-primary) !important;
    color: var(--bg-primary) !important;
}

    .rv-scope .nav-cta-consult:hover {
        box-shadow: 0 0 25px rgba(0, 200, 255, 0.4);
        transform: translateY(-1px);
    }

.rv-scope .nav-cta-buy {
    background: var(--accent-green);
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
}

    .rv-scope .nav-cta-buy:hover {
        box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
        transform: translateY(-1px);
    }

.rv-scope .nav-cta-support {
    background: var(--accent-orange);
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
}

    .rv-scope .nav-cta-support:hover {
        box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
        transform: translateY(-1px);
    }

.rv-scope .nav-cta .cta-icon {
    font-size: 0.95rem;
    -webkit-text-fill-color: initial;
}

.rv-scope .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

    .rv-scope .hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: var(--transition);
    }

/* ===== MOBILE BOTTOM BAR ===== */
.rv-scope .mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 999;
    background: rgba(7, 11, 20, 0.5);
    backdrop-filter: blur(24px);
    border-top: 1px solid var(--border);
    padding: 0.6rem 0.8rem;
    padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
}

.rv-scope .mobile-bottom-bar-inner {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.rv-scope .mobile-cta-btn {
    flex: 1;
    max-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.55rem 0.4rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .rv-scope .mobile-cta-btn .m-icon {
        font-size: 1.3rem;
        line-height: 1;
    }

    .rv-scope .mobile-cta-btn .m-label {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .rv-scope .mobile-cta-btn:active {
        transform: scale(0.95);
    }

.rv-scope .mobile-cta-consult {
    background: rgba(0, 200, 255, 0.12);
    color: var(--accent);
    border: 1px solid rgba(0, 200, 255, 0.2);
}

    .rv-scope .mobile-cta-consult:active {
        background: rgba(0, 200, 255, 0.25);
    }

.rv-scope .mobile-cta-buy {
    background: rgba(34, 197, 94, 0.12);
    color: var(--accent-green);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

    .rv-scope .mobile-cta-buy:active {
        background: rgba(34, 197, 94, 0.25);
    }

.rv-scope .mobile-cta-support {
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent-orange);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

    .rv-scope .mobile-cta-support:active {
        background: rgba(245, 158, 11, 0.25);
    }

.rv-scope .mobile-cta-buy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(34, 197, 94, 0.15);
    animation: mobileBarPulse 2.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes mobileBarPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

/* ===== HERO ===== */
.rv-scope .hero {
    min-height: 100vh;
    display: flex;
    align-items: start;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.rv-scope .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .rv-scope .hero-bg .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        opacity: 0.1;
        animation: orbFloat 8s ease-in-out infinite alternate;
    }

    .rv-scope .hero-bg .orb-1 {
        width: 500px;
        height: 500px;
        background: var(--accent);
        top: -15%;
        right: -10%;
    }

    .rv-scope .hero-bg .orb-2 {
        width: 400px;
        height: 400px;
        background: var(--accent-secondary);
        bottom: -10%;
        left: -5%;
        animation-delay: 2s;
    }

    .rv-scope .hero-bg .orb-3 {
        width: 300px;
        height: 300px;
        background: #ff6b9d;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation-delay: 4s;
        opacity: 0.15;
    }

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.rv-scope .hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.rv-scope .hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.rv-scope .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 200, 255, 0.08);
    border: 1px solid rgba(0, 200, 255, 0.2);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

    .rv-scope .hero-badge .dot {
        width: 8px;
        height: 8px;
        background: var(--accent);
        border-radius: 50%;
        animation: pulse 1s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.rv-scope .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

    .rv-scope .hero h1 .gradient-text {
        background: var(--gradient-hero);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.rv-scope .hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.rv-scope .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rv-scope .btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
    padding: 0.85rem 2.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Vazirmatn', sans-serif;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .rv-scope .btn-primary:hover {
        box-shadow: 0 8px 40px rgba(0, 200, 255, 0.35);
        transform: translateY(-2px);
    }

.rv-scope .btn-outline {
    background: transparent;
    color: var(--text-primary);
    padding: 0.85rem 2.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Vazirmatn', sans-serif;
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .rv-scope .btn-outline:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(0, 200, 255, 0.05);
    }

.rv-scope .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1s;
}

.rv-scope .hero-stat {
    text-align: center;
}

    .rv-scope .hero-stat .number {
        font-size: 2rem;
        font-weight: 900;
        color: var(--accent);
        display: block;
    }

    .rv-scope .hero-stat .label {
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-top: 0.3rem;
    }

/* ===== SECTIONS ===== */
.rv-scope .section {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

/* main.css has a legacy #contact{padding-bottom:0} rule (higher specificity
   than .rv-scope .section) left over from the old markup that happens to
   collide with this section's id, killing the gap before the footer. */
.rv-scope .section#contact {
    padding-bottom: 6rem;
}

.rv-scope .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rv-scope .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rv-scope .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

    .rv-scope .section-tag::before, .rv-scope .section-tag::after {
        content: '';
        width: 20px;
        height: 1px;
        background: var(--accent);
        opacity: 0.4;
    }

.rv-scope .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.rv-scope .section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES ===== */
.rv-scope .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rv-scope .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

    .rv-scope .service-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .rv-scope .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: var(--gradient-hero);
        opacity: 0;
        transition: var(--transition);
    }

    .rv-scope .service-card:hover {
        border-color: rgba(0, 200, 255, 0.15);
        background: var(--bg-card-hover);
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

        .rv-scope .service-card:hover::before {
            opacity: 1;
        }

.rv-scope .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.rv-scope .service-card:hover .service-icon {
    background: rgba(0, 200, 255, 0.2);
    transform: scale(1.05);
}

.rv-scope .service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.rv-scope .service-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* ===== NUMBERED FEATURE LIST (reused by software/info pages) ===== */
.rv-scope .rv-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2.2rem;
}

.rv-scope .rv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
}

.rv-scope .rv-feature-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}

.rv-scope .rv-feature-item p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 767px) {
    .rv-scope .rv-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ARTICLE PAGES (Software/*.cshtml long-form content) ===== */
.rv-scope.rv-article {
    padding: 8rem 0 6rem;
}

.rv-scope .rv-article-container {
    max-width: 820px;
}

.rv-scope .rv-article-hero {
    text-align: center;
    margin-bottom: 2.2rem;
}

    .rv-scope .rv-article-hero h1 {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        font-weight: 800;
        line-height: 1.6;
        letter-spacing: -0.01em;
    }

.rv-scope .rv-article-lead {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 2.2;
    margin-bottom: 2.6rem;
    padding: 0.2rem 1.4rem 0.2rem 0;
    border-right: 3px solid var(--accent);
}

    .rv-scope .rv-article-lead strong {
        color: var(--text-primary);
    }

.rv-scope .rv-article-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-right: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 2rem 2.2rem;
    margin-bottom: 1.6rem;
    transition: var(--transition);
}

    .rv-scope .rv-article-section:hover {
        background: var(--bg-card-hover);
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }

    .rv-scope .rv-article-section h2 {
        font-size: 1.25rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .rv-scope .rv-article-section p {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 2;
    }

        .rv-scope .rv-article-section p strong {
            color: var(--text-primary);
        }

.rv-scope .rv-article-list {
    margin-top: 1rem;
}

    .rv-scope .rv-article-list li {
        position: relative;
        padding-right: 1.6rem;
        margin-bottom: 0.7rem;
        font-size: 0.92rem;
        color: var(--text-secondary);
        line-height: 1.9;
    }

        .rv-scope .rv-article-list li::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0.55rem;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
        }

.rv-scope .rv-article-subsection {
    padding-top: 1.4rem;
    margin-top: 1.4rem;
    border-top: 1px solid var(--border);
}

    .rv-scope .rv-article-subsection:first-of-type {
        padding-top: 0;
        margin-top: 0;
        border-top: none;
    }

    .rv-scope .rv-article-subsection h3 {
        font-size: 1.02rem;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 0.6rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .rv-scope .rv-article-subsection h3::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
        }

    .rv-scope .rv-article-subsection p {
        font-size: 0.92rem;
        color: var(--text-secondary);
        line-height: 1.95;
    }

.rv-scope .rv-article-summary {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

    .rv-scope .rv-article-summary:hover {
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }

    .rv-scope .rv-article-summary::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: var(--gradient-hero);
    }

    .rv-scope .rv-article-summary h2 {
        font-size: 1.15rem;
        font-weight: 800;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

        .rv-scope .rv-article-summary h2::before {
            font-family: 'FontAwesome';
            content: '\f058';
            color: var(--accent);
            font-size: 1.1rem;
        }

    .rv-scope .rv-article-summary p {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 2;
    }

        .rv-scope .rv-article-summary p strong {
            color: var(--text-primary);
        }

@media (max-width: 575px) {
    .rv-scope .rv-article-section,
    .rv-scope .rv-article-summary {
        padding: 1.5rem;
    }

    .rv-scope .rv-article-lead {
        padding-right: 1rem;
    }
}

/* ===== CTA BUTTON PAIR (Software/_Request.cshtml) ===== */
.rv-scope .rv-cta-pair {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

    .rv-scope .rv-cta-pair a {
        flex: 1 1 220px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        padding: 0.95rem 1.5rem;
        border-radius: var(--radius-sm);
        font-weight: 700;
        font-size: 0.95rem;
        transition: var(--transition);
    }

    .rv-scope .rv-cta-pair .rv-cta-buy {
        background: var(--accent);
        color: var(--bg-primary);
    }

        .rv-scope .rv-cta-pair .rv-cta-buy:hover {
            box-shadow: 0 0 25px rgba(0, 200, 255, 0.4);
            transform: translateY(-2px);
        }

    .rv-scope .rv-cta-pair .rv-cta-demo {
        background: transparent;
        border: 1px solid var(--border);
        color: var(--text-primary);
    }

        .rv-scope .rv-cta-pair .rv-cta-demo:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-2px);
        }

/* ===== ABOUT ===== */
.rv-scope .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rv-scope .about-visual {
    position: relative;
}

.rv-scope .about-visual-box {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .rv-scope .about-visual-box::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 40%, rgba(0,200,255,0.08), transparent 50%), radial-gradient(circle at 70% 60%, rgba(123,97,255,0.08), transparent 50%);
    }

.rv-scope .about-visual-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.rv-scope .about-year {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.rv-scope .about-year-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.rv-scope .about-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
}

    .rv-scope .about-floating-card .afc-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(0, 200, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    .rv-scope .about-floating-card .afc-text {
        font-size: 0.85rem;
        font-weight: 700;
    }

    .rv-scope .about-floating-card .afc-sub {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

.rv-scope .about-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.rv-scope .about-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 2.1;
    margin-bottom: 1.2rem;
}

.rv-scope .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.rv-scope .about-feature {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    font-weight: 500;
}

    .rv-scope .about-feature .check {
        width: 22px;
        height: 22px;
        border-radius: 6px;
        background: rgba(0, 200, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        color: var(--accent);
        flex-shrink: 0;
    }

/* ===== CLIENTS ===== */
.rv-scope .clients-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.rv-scope .clients-track-wrapper {
    position: relative;
    margin-top: 1rem;
}

    .rv-scope .clients-track-wrapper::before, .rv-scope .clients-track-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 300px;
        z-index: 2;
        pointer-events: none;
    }

    .rv-scope .clients-track-wrapper::before {
        right: -50px;
        background: linear-gradient(to left, var(--bg-secondary), transparent);
    }

    .rv-scope .clients-track-wrapper::after {
        left: -50px;
        background: linear-gradient(to right, var(--bg-secondary), transparent);
    }

.rv-scope .clients-track {
    display: flex;
    gap: 2.5rem;
    animation: scrollLTR 50s linear infinite;
    width: max-content;
}

@keyframes scrollLTR {
    0% {
        transform: translateX(70%);
    }

    100% {
        transform: translateX(0%);
    }
}

.rv-scope .client-logo {
    flex-shrink: 0;
    width: 150px;
    height: 70px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
    padding: 0 1rem;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
}

    .rv-scope .client-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .rv-scope .client-logo:hover {
        border-color: rgba(0, 200, 255, 0.2);
        color: var(--text-secondary);
        background: rgba(0, 200, 255, 0.04);
    }

/* ===== EXPERTISE ===== */
.rv-scope .expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.rv-scope .expertise-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

    .rv-scope .expertise-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .rv-scope .expertise-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 70%);
        opacity: 0;
        transition: var(--transition);
    }

    .rv-scope .expertise-card:hover {
        border-color: rgba(0, 200, 255, 0.15);
        transform: translateY(-4px);
    }

        .rv-scope .expertise-card:hover::before {
            opacity: 1;
        }

.rv-scope .expertise-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,200,255,0.1), rgba(123,97,255,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.rv-scope .expertise-card:hover .expertise-icon {
    transform: scale(1.1);
}

.rv-scope .expertise-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
}

.rv-scope .expertise-card .en-title {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ===== ENAMAD ===== */
.rv-scope .enamad-block {
    text-align: center;
    padding: 2rem 2rem 0;
}

/* ===== CONTACT ===== */
.rv-scope .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.rv-scope .contact-info {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    font-weight: 400;
}

    .rv-scope .contact-info::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: var(--gradient-hero);
    }

    .rv-scope .contact-info h3 {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

    .rv-scope .contact-info p {
        font-size: 0.92rem;
        color: var(--text-secondary);
        line-height: 2;
        margin-bottom: 2rem;
    }

.rv-scope .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.rv-scope .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.rv-scope .contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.rv-scope .contact-item-text .ci-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.rv-scope .contact-item-text .ci-value {
    font-size: 0.9rem;
    font-weight: 600;
}

    .rv-scope .contact-item-text .ci-value.ltr {
        direction: ltr;
        text-align: right;
    }

.rv-scope .contact-links {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

    .rv-scope .contact-links a {
        font-size: 0.85rem;
        color: var(--text-secondary);
    }

        .rv-scope .contact-links a:hover {
            color: var(--accent);
        }

.rv-scope .contact-form {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.rv-scope .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.rv-scope .form-group {
    margin-bottom: 1.2rem;
}

    .rv-scope .form-group label {
        display: block;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 0.5rem;
    }

    .rv-scope .form-group input,
    .rv-scope .form-group textarea,
    .rv-scope .form-group select {
        width: 100%;
        padding: 0.8rem 1rem;
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        color: var(--text-primary);
        font-family: 'Vazirmatn', sans-serif;
        font-size: 0.9rem;
        transition: var(--transition);
        outline: none;
    }

        .rv-scope .form-group input:focus,
        .rv-scope .form-group textarea:focus,
        .rv-scope .form-group select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.1);
        }

    .rv-scope .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.rv-scope .form-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

    .rv-scope .form-submit:hover {
        box-shadow: 0 8px 30px rgba(0, 200, 255, 0.3);
        transform: translateY(-2px);
    }

.rv-scope .validation-summary-errors ul {
    list-style: disc;
    padding-right: 1.2rem;
}

.rv-scope .validation-summary-errors {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--accent-orange);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.rv-scope .field-validation-error {
    color: var(--accent-orange);
    font-size: 0.78rem;
    display: block;
    margin-top: 0.3rem;
}

/* ===== FOOTER ===== */
.rv-scope .footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

.rv-scope .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.rv-scope .footer-brand .logo {
    font-size: 1.3rem;
}

.rv-scope .footer-brand p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.rv-scope .footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .rv-scope .footer-links a {
        font-size: 0.85rem;
        color: var(--text-secondary);
        transition: var(--transition);
    }

        .rv-scope .footer-links a:hover {
            color: var(--accent);
        }

.rv-scope .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: transparent;
}
.rv-scope h1, .rv-scope h2, .rv-scope h3, .rv-scope h4, .rv-scope h5, .rv-scope h6 {
    color: var(--text-primary);
}
/* ===== BACK TO TOP ===== */
.rv-scope .back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 200, 255, 0.3);
}

    .rv-scope .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .rv-scope .back-to-top:hover {
        transform: translateY(-3px);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .rv-scope .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rv-scope .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rv-scope .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .rv-scope .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .rv-scope .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(7, 11, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
        max-height: 80vh;
        overflow-y: auto;
    }

        .rv-scope .nav-links.open {
            display: flex;
        }

    .rv-scope .nav-more-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 0.5rem;
        background: rgba(255,255,255,0.03);
    }

    .rv-scope .nav-more.open .nav-more-menu {
        display: block;
    }

    .rv-scope .nav-cta-group {
        display: none;
    }

    .rv-scope .hamburger {
        display: flex;
    }

    .rv-scope .mobile-bottom-bar {
        display: block;
    }

    .rv-scope .footer {
        padding-bottom: 5.5rem;
    }

    .rv-scope .services-grid {
        grid-template-columns: 1fr;
    }

    .rv-scope .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rv-scope .hero-stats {
        gap: 1.5rem;
    }

    .rv-scope .form-row {
        grid-template-columns: 1fr;
    }

    .rv-scope .about-features {
        grid-template-columns: 1fr;
    }

    .rv-scope .back-to-top {
        bottom: 6rem;
    }
}

@media (max-width: 480px) {
    .rv-scope .expertise-grid {
        grid-template-columns: 1fr;
    }

    .rv-scope .hero h1 {
        font-size: 1.8rem;
    }

    .rv-scope .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .rv-scope .mobile-cta-btn {
        padding: 0.5rem 0.3rem;
    }

        .rv-scope .mobile-cta-btn .m-label {
            font-size: 0.65rem;
        }
}
