:root {
    --color-bg: #030712;
    --color-bg-soft: #020617;
    --color-accent: #6366f1;
    --color-accent-soft: rgba(99, 102, 241, 0.25);
    --color-accent-strong: #4f46e5;
    --color-card-bg: rgba(15, 23, 42, 0.88);
    --color-border-subtle: rgba(148, 163, 184, 0.28);
    --color-text: #f9fafb;
    --color-muted: #9ca3af;
    --shadow-soft: 0 22px 80px rgba(15, 23, 42, 0.9);
    --radius-lg: 18px;
    --radius-xl: 26px;
    --transition-fast: all 0.18s ease-out;
    --transition-med: all 0.28s ease-out;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


body {
    margin: 0;
    font-family: Vazirmatn FD NL, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background: radial-gradient(circle at top left, #111827 0, transparent 45%), radial-gradient(circle at top right, #1d1b4c 0, transparent 50%), radial-gradient(circle at bottom, #0b1120 0, #020617 62%);
    color: var(--color-text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: -80px;
    z-index: -5;
    background: radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.16), transparent 55%), radial-gradient(circle at 90% 0%, rgba(129, 140, 248, 0.2), transparent 55%), radial-gradient(circle at 50% 100%, rgba(45, 212, 191, 0.18), transparent 60%), linear-gradient(135deg, #020617, #020617);
    background-size: 140% 140%;
    opacity: 0.85;
    pointer-events: none;
    animation: bgFlow 32s ease-in-out infinite;
}

@keyframes bgFlow {
    0% {
        transform: translate3d(0, 0, 0);
        background-position: 0% 0%, 100% 0%, 50% 100%, 0% 0%;
    }
    50% {
        transform: translate3d(0, 10px, 0);
        background-position: 20% 10%, 80% -10%, 40% 90%, 100% 50%;
    }
    100% {
        transform: translate3d(0, 0, 0);
        background-position: 0% 0%, 100% 0%, 50% 100%, 0% 0%;
    }
}

a {
    text-decoration: none;
}


.particle-layer {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
}

#particle-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.85);
    background: radial-gradient(circle at center, rgba(129, 140, 248, 0.18), transparent 65%);
    pointer-events: none;
    transform: translate3d(-100px, -100px, 0);
    will-change: transform;
    mix-blend-mode: screen;
    z-index: 9999;
    transition: border-color 0.15s ease-out, background 0.15s ease-out, opacity 0.15s ease-out;
}

.custom-cursor::after {
    content: "";
    position: absolute;
    inset: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    margin-left: -3px;
    border-radius: 999px;
    background: #e5e7eb;
    opacity: 0.9;
}

.custom-cursor--active {
    border-color: rgba(129, 140, 248, 1);
    background: radial-gradient(circle at center, rgba(129, 140, 248, 0.45), transparent 70%);
    opacity: 1;
}


.nav-blur-wrapper {
    position: fixed;
    inset-inline: 1.5rem;
    top: 1.25rem;
    z-index: 50;
}

.navbar-glass {
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.45);
    backdrop-filter: blur(26px);
    box-shadow: 0 14px 50px rgba(15, 23, 42, 0.85);
    padding-inline: 1.5rem;
    padding-block: 0.2rem;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    color: #e5e7eb;
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: radial-gradient(circle at right, rgba(56, 189, 248, 0.2), transparent 55%);
}

.brand-pill-label {
    font-size: 0.72rem;
    color: var(--color-muted);
}

.brand-pill-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #22c55e, #16a34a);
    box-shadow: 0 0 14px rgba(22, 163, 74, 0.85);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.navbar-nav .nav-link {
    color: #cbd5f5;
    font-size: 0.9rem;
    padding-inline: 0.75rem;
    padding-block: 0.55rem;
    position: relative;
    transition: color 0.2s ease-out, background 0.2s ease-out;
    border-radius: 999px;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    inset-inline: 0.9rem;
    bottom: 0.45rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #a855f7, #6366f1, #22c55e);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease-out;
}

.navbar-nav .nav-link:hover {
    color: #ffffff;
    background: rgba(15, 23, 42, 0.9);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-cta-btn {
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.9);
    background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.28), transparent 55%), radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.35), transparent 55%);
    color: #eef2ff;
    font-size: 0.9rem;
    padding: 0.4rem 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.72);
    transition: var(--transition-fast);
}

.navbar-cta-btn:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 18px 55px rgba(79, 70, 229, 0.95);
    background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.38), transparent 55%), radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.45), transparent 55%);
}
.nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-cta-chip {
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.82rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.96);
    transition: var(--transition-fast);
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9);
}

.nav-cta-chip:hover {
    border-color: rgba(129, 140, 248, 1);
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.26), transparent 55%), radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.3), transparent 55%);
    box-shadow: 0 14px 42px rgba(79, 70, 229, 0.9);
    transform: translateY(-1px);
}

.nav-cta-chip--business {
    border-color: rgba(129, 140, 248, 0.9);
}

.nav-cta-chip--staff {
    border-color: rgba(34, 197, 94, 0.9);
}

.nav-cta-chip--customer {
    border-color: rgba(56, 189, 248, 0.9);
}

.nav-scrolled .navbar-glass {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
    border-color: rgba(148, 163, 184, 0.62);
}


.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 7.5rem;
    padding-bottom: 5.5rem;
    overflow: hidden;
}

.hero-gradient-layer {
    position: absolute;
    inset: -140px;
    background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.16), transparent 55%), radial-gradient(circle at 80% 10%, rgba(129, 140, 248, 0.25), transparent 60%), radial-gradient(circle at 50% 100%, rgba(45, 212, 191, 0.18), transparent 65%);
    opacity: 0.9;
    z-index: -3;
}

.hero-parallax-orbit {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 9999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    opacity: 0.55;
    z-index: -2;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.3), transparent 65%);
}

.hero-parallax-orbit-inner {
    position: absolute;
    width: 290px;
    height: 290px;
    border-radius: 9999px;
    border: 1px dashed rgba(129, 140, 248, 0.7);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(8deg);
    opacity: 0.8;
}

.hero-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #a855f7, transparent 65%);
    box-shadow: 0 0 22px rgba(168, 85, 247, 0.9);
    opacity: 0.9;
    z-index: -1;
}

.hero-particle:nth-child(1) {
    top: 18%;
    right: 28%;
}

.hero-particle:nth-child(2) {
    bottom: 16%;
    left: 30%;
}

.hero-particle:nth-child(3) {
    top: 32%;
    left: 12%;
}

.hero-particle:nth-child(4) {
    top: 10%;
    right: 12%;
}

.hero-content-title {
    font-size: clamp(2.2rem, 3.1vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #f9fafb;
    margin-bottom: 1.2rem;
}

.hero-content-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--color-muted);
    padding: 0.2rem 0.8rem 0.25rem;
    border-radius: 999px;
    background: radial-gradient(circle at right, rgba(34, 197, 94, 0.24), transparent 55%);
    border: 1px solid rgba(34, 197, 94, 0.45);
    margin-bottom: 0.85rem;
}

.hero-highlight-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #bbf7d0, #22c55e);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-muted);
    max-width: 28rem;
    line-height: 1.9;
}

.hero-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.6rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
}

.hero-pill-bullet {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #6366f1, transparent 55%);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.1rem;
}

.btn-primary-solid {
    border-radius: 999px;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    background-image: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #f9fafb;
    box-shadow: 0 18px 55px rgba(79, 70, 229, 0.95);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: var(--transition-med);
}

.btn-primary-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 65px rgba(79, 70, 229, 1);
}

.btn-ghost-soft {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: var(--transition-fast);
}

.btn-ghost-soft:hover {
    background: rgba(15, 23, 42, 1);
    border-color: rgba(248, 250, 252, 0.9);
    transform: translateY(-1px);
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    margin-top: 1.6rem;
    font-size: 0.82rem;
    color: var(--color-muted);
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-meta-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.65);
    color: #e0f2fe;
    background: rgba(8, 47, 73, 0.9);
}

.hero-visual-wrapper {
    position: relative;
    max-width: 460px;
    margin-inline: auto;
}

.hero-preview-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.9);
    background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.24), rgba(15, 23, 42, 0.98));
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.95);
    margin-bottom: 1.1rem;
}

.hero-preview-img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-dashboard-card {
    position: relative;
    border-radius: 28px;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.55);
    padding: 1.2rem 1.3rem;
    max-width: 420px;
    margin-inline-start: auto;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

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

.hero-dashboard-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.hero-dashboard-subtitle {
    font-size: 0.78rem;
    color: #94a3b8;
}

.hero-dashboard-tag {
    font-size: 0.72rem;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    background: rgba(55, 65, 81, 0.9);
    color: #d1d5db;
}

.hero-dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.3rem;
}

.hero-dashboard-metric {
    padding: 0.7rem 0.75rem;
    border-radius: 16px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
}

.hero-metric-label {
    font-size: 0.72rem;
    color: var(--color-muted);
    margin-bottom: 0.2rem;
}

.hero-metric-value {
    font-size: 0.98rem;
    font-weight: 700;
    color: #f9fafb;
}

.hero-metric-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

.hero-metric-chip {
    font-size: 0.68rem;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    background: rgba(31, 41, 55, 0.95);
    color: #cbd5f5;
}

.hero-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-top: 0.7rem;
    padding: 0.65rem 0.75rem;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.16), rgba(56, 189, 248, 0.1));
    border: 1px solid rgba(45, 212, 191, 0.68);
}

.hero-timeline-label {
    font-size: 0.75rem;
    color: #bbf7d0;
}

.hero-timeline-bar {
    flex: 1;
    height: 5px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    overflow: hidden;
    margin-inline: 0.4rem;
}

.hero-timeline-bar-fill {
    width: 78%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #38bdf8);
    box-shadow: 0 0 16px rgba(45, 212, 191, 0.9);
}

.hero-timeline-tag {
    font-size: 0.72rem;
    color: #e0f2fe;
}

.hero-badge-floating {
    position: absolute;
    left: 10%;
    top: 16%;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(8, 47, 73, 0.9);
    border: 1px solid rgba(56, 189, 248, 0.65);
    font-size: 0.7rem;
    color: #e0f2fe;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #22c55e, transparent 55%);
}

.hero-accent-overlay {
    bottom: -55%;
    height: 65%;
    opacity: 0.55;
}

.hero-scroll-indicator {
    position: absolute;
    inset-inline: 0;
    bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero-scroll-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.9);
    color: var(--color-muted);
    font-size: 0.75rem;
}

.scroll-dot {
    width: 6px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(148, 163, 184, 0.1), rgba(148, 163, 184, 0.7));
    position: relative;
    overflow: hidden;
}

.scroll-dot-inner {
    position: absolute;
    inset-inline: 2px;
    top: 2px;
    height: 6px;
    border-radius: 999px;
    background: #e5e7eb;
    animation: scroll-dot 1.3s ease-in-out infinite;
}

@keyframes scroll-dot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(6px);
        opacity: 0;
    }
}

.section {
    position: relative;
    padding-block: 5.5rem;
}

.section-narrow {
    max-width: 1120px;
    margin-inline: auto;
}

.section-header {
    margin-bottom: 2.7rem;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    padding: 0.22rem 0.8rem 0.3rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.94);
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.section-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #6366f1, transparent 55%);
}

.section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e5e7eb;
    margin-bottom: 0.55rem;
}

.section-subtitle {
    font-size: 0.92rem;
    color: var(--color-muted);
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.9;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.2rem;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.96));
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.8);
    overflow: hidden;
    transition: var(--transition-med);
}

.service-card::before {
    content: "";
    position: absolute;
    inset-inline: -40%;
    top: -55%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.32), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.service-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: radial-gradient(circle at center, rgba(129, 140, 248, 0.28), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(129, 140, 248, 0.75);
    color: #e5e7eb;
    margin-bottom: 0.8rem;
}

.service-title {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #e5e7eb;
}

.service-body {
    font-size: 0.86rem;
    color: var(--color-muted);
    line-height: 1.9;
    margin-bottom: 0.75rem;
}

.service-meta {
    font-size: 0.76rem;
    color: #9ca3af;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(129, 140, 248, 0.9);
    box-shadow: 0 22px 60px rgba(55, 65, 81, 0.95);
}

.service-card:hover::before {
    opacity: 1;
    transform: translateY(10px);
}

.parallax-layer {
    will-change: transform;
}

.strengths-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.strengths-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.strength-card {
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(55, 65, 81, 0.9);
    padding: 1.1rem 1rem;
    font-size: 0.86rem;
    color: var(--color-muted);
}

.strength-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.strength-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #e5e7eb;
}

.strength-tag {
    font-size: 0.74rem;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #cbd5f5;
}

.strength-hero-card {
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.65);
    box-shadow: var(--shadow-soft);
    padding: 1.4rem 1.45rem;
    position: relative;
    overflow: hidden;
}

.strength-hero-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    color: var(--color-muted);
}

.strength-hero-pill {
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.9);
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.96);
}

.strength-hero-title {
    font-size: 1rem;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.strength-hero-subtitle {
    font-size: 0.86rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.strength-metrics-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.strength-metric-pill {
    border-radius: 999px;
    padding: 0.25rem 0.8rem;
    border: 1px solid rgba(55, 65, 81, 0.9);
    font-size: 0.76rem;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.96);
}

.strength-bg-accent {
    position: absolute;
    inset-inline: -20%;
    bottom: -40%;
    height: 55%;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.28), transparent 60%);
    opacity: 0.7;
}

.pricing-section {
    position: relative;
}

.pricing-bg {
    position: absolute;
    inset-inline: -40%;
    top: -20%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.28), transparent 65%);
    opacity: 0.55;
    z-index: -1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(55, 65, 81, 0.95);
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.95);
    transition: var(--transition-med);
}

.pricing-card.featured {
    border-color: rgba(129, 140, 248, 1);
    background: radial-gradient(circle at top, rgba(129, 140, 248, 0.38), rgba(15, 23, 42, 0.98));
    transform: translateY(-4px);
}

.pricing-badge {
    font-size: 0.76rem;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    background: rgba(31, 41, 55, 0.95);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pricing-title {
    font-size: 1rem;
    font-weight: 700;
    color: #e5e7eb;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-price span {
    font-size: 0.78rem;
    color: var(--color-muted);
}

.pricing-desc {
    font-size: 0.84rem;
    color: var(--color-muted);
}

.pricing-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #e5e7eb;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pricing-list-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #22c55e, transparent 55%);
}

.pricing-cta {
    margin-top: 0.4rem;
}

.pricing-card:hover {
    transform: translateY(-7px);
    border-color: rgba(129, 140, 248, 1);
    box-shadow: 0 26px 70px rgba(79, 70, 229, 0.95);
}

.blog-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 1.6rem;
}

.blog-main-card {
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(55, 65, 81, 0.95);
    padding: 1.4rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-main-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.9);
}

.blog-main-img {
    display: block;
    width: 100%;
    height: auto;
}

.blog-main-tag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.75rem;
    color: var(--color-muted);
}

.blog-main-tag {
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.9);
    color: #dbeafe;
}

.blog-main-title {
    font-size: 1rem;
    font-weight: 700;
    color: #e5e7eb;
}

.blog-main-body {
    font-size: 0.86rem;
    color: var(--color-muted);
    line-height: 1.9;
}

.blog-main-meta {
    font-size: 0.78rem;
    color: #94a3b8;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.blog-item {
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.94);
    border: 1px solid rgba(31, 41, 55, 0.9);
    padding: 0.75rem 0.85rem;
    font-size: 0.82rem;
    color: var(--color-muted);
    display: block;
    transition: var(--transition-fast);
}

.blog-item-inner {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.blog-item-thumb-wrapper {
    flex: 0 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.blog-item-thumb {
    display: block;
    width: 100px;
    height: 70px;
    object-fit: cover;
}

.blog-item-content {
    flex: 1;
}

.blog-item-title {
    font-size: 0.86rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.15rem;
}

.blog-item-meta {
    font-size: 0.75rem;
    color: #94a3b8;
}

.blog-item:hover {
    border-color: rgba(129, 140, 248, 0.9);
    transform: translateY(-3px);
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.license-card {
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(55, 65, 81, 0.95);
    padding: 1rem 0.95rem;
    font-size: 0.8rem;
    color: var(--color-muted);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.license-chip {
    width: 38px;
    height: 38px;
    border-radius: 16px;
    background: radial-gradient(circle at center, rgba(129, 140, 248, 0.3), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #e5e7eb;
}

.license-title {
    font-size: 0.86rem;
    font-weight: 600;
    color: #e5e7eb;
}

.license-meta {
    font-size: 0.76rem;
    color: #94a3b8;
}

.footer {
    padding-block: 2.7rem;
    border-top: 1px solid rgba(31, 41, 55, 0.95);
    background: rgba(3, 7, 18, 0.98);
    font-size: 0.8rem;
    color: var(--color-muted);
}

.footer-inner {
    max-width: 1120px;
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-link {
    color: #9ca3af;
    transition: color 0.18s ease-out;
}

.footer-link:hover {
    color: #e5e7eb;
}

.site-main {
    position: relative;
    z-index: 1;
    padding-top: 0;
}

.page-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e5e7eb;
    margin-bottom: 0.6rem;
}

.page-intro {
    max-width: 40rem;
    margin: 0 auto;
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.9;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    padding: 0.18rem 0.8rem 0.26rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.96);
    color: var(--color-muted);
    margin-bottom: 0.8rem;
}

.page-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #6366f1, transparent 55%);
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
    gap: 1.6rem;
    align-items: flex-start;
}

.legal-card {
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(55, 65, 81, 0.95);
    padding: 1.4rem 1.3rem;
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.9;
}

.legal-side-card {
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(55, 65, 81, 0.95);
    padding: 1.1rem 1rem;
    font-size: 0.84rem;
    color: var(--color-muted);
}

.legal-side-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.6rem;
}

.page-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #e5e7eb;
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
}

.legal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.legal-list-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #22c55e, transparent 55%);
    margin-top: 0.22rem;
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(55, 65, 81, 0.95);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 0.9rem 1rem;
    background: transparent;
    border: 0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #e5e7eb;
    text-align: right;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    flex: 0 0 auto;
    font-size: 1.1rem;
    color: #9ca3af;
    transition: transform 0.2s ease-out;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.86rem;
    color: var(--color-muted);
    line-height: 1.9;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 1.8rem;
    align-items: center;
}

.about-card {
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(55, 65, 81, 0.95);
    padding: 1.4rem 1.3rem;
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.9;
}

.about-image-card {
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(55, 65, 81, 0.95);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.95);
}

.about-img-wrapper {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.9);
}

.about-img {
    display: block;
    width: 100%;
    height: auto;
}

.about-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.2rem;
}

.about-metric {
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, 0.95);
    padding: 0.3rem 0.85rem;
    font-size: 0.78rem;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.96);
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.about-metric-label {
    font-size: 0.7rem;
    color: var(--color-muted);
}

.about-metric-value {
    font-size: 0.86rem;
    font-weight: 600;
    color: #e5e7eb;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1.6rem;
    align-items: flex-start;
}

.contact-card {
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(55, 65, 81, 0.95);
    padding: 1.4rem 1.3rem;
}

.contact-info {
    margin-bottom: 1.2rem;
    font-size: 0.86rem;
    color: var(--color-muted);
    line-height: 1.9;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    padding: 0.18rem 0.8rem 0.26rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.7);
    background: rgba(15, 23, 42, 0.96);
    color: #bbf7d0;
    margin-bottom: 0.7rem;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.84rem;
    color: var(--color-muted);
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.9);
    margin-top: 1rem;
}

.contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-form-grid .form-control {
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(55, 65, 81, 0.95);
    border-radius: 12px;
    font-size: 0.86rem;
    color: #e5e7eb;
}

.contact-form-grid .form-control:focus {
    border-color: rgba(129, 140, 248, 1);
    box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.6);
    background: rgba(15, 23, 42, 0.98);
    color: #f9fafb;
}

.contact-form-grid label {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-bottom: 0.15rem;
}

.contact-submit-row {
    margin-top: 0.6rem;
    display: flex;
    justify-content: flex-start;
}

.alert-success {
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.9);
    background: rgba(22, 163, 74, 0.08);
    color: #bbf7d0;
    font-size: 0.8rem;
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.8rem;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 6.5rem;
        padding-bottom: 4.5rem;
    }

    .hero-dashboard-card {
        margin-top: 1.6rem;
        margin-inline: auto;
    }

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

    .strengths-layout {
        grid-template-columns: minmax(0, 1fr);
    }

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

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

    .legal-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .nav-blur-wrapper {
        inset-inline: 0.75rem;
    }

    .section {
        padding-block: 4.2rem;
    }

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

    .strengths-list {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .hero-content-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .blog-item-thumb {
        width: 88px;
        height: 60px;
    }
}

@media (max-width: 575.98px) {
    .licenses-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
@media (max-width: 991.98px) {
    .nav-blur-wrapper {
        inset-inline: 0.75rem;
        top: 1rem;
    }

    .navbar-glass {
        padding-inline: 1rem;
        padding-block: 0.35rem;
        border-radius: 18px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .navbar-collapse {
        position: fixed;
        inset-inline: 0.75rem;
        top: 4.1rem;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
        border-radius: 18px;
        border: 1px solid rgba(148, 163, 184, 0.55);
        box-shadow: 0 24px 80px rgba(15, 23, 42, 0.95);
        padding: 0.9rem 0.9rem 1rem;
        max-height: calc(100vh - 5rem);
        overflow-y: auto;
    }

    .navbar-nav {
        align-items: flex-start;
        gap: 0.2rem;
        margin-bottom: 0.8rem;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding-block: 0.5rem;
        padding-inline: 0.9rem;
    }

    .navbar-nav .nav-link::after {
        inset-inline: 0.9rem;
        bottom: 0.35rem;
    }

    .nav-cta-wrapper {
        width: 100%;
    }

    .nav-cta-wrapper .navbar-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .navbar-toggler {
        border-radius: 999px;
        border-color: rgba(148, 163, 184, 0.6);
        padding: 0.15rem 0.7rem;
        background: rgba(15, 23, 42, 0.85);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.7);
    }
}
@media (max-width: 991.98px) {
    .nav-cta-wrapper {
        width: 100%;
        margin-top: 0.6rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .nav-cta-wrapper .nav-cta-chip {
        flex: 1 1 calc(33.333% - 0.4rem);
        text-align: center;
        font-size: 0.8rem;
        padding-inline: 0.6rem;
    }
}

@media (max-width: 575.98px) {
    .nav-cta-wrapper .nav-cta-chip {
        flex: 1 1 100%;
    }
}
.section-actions {
    margin-top: 0.8rem;
    display: flex;
    justify-content: flex-start;
}
.hero-dashboard-body {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.hero-dashboard-flow {
    border-radius: 18px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.99));
    padding: 0.9rem 0.85rem;
}

.hero-flow-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.6rem;
}

.hero-flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hero-flow-step {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.hero-flow-step-index {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.76rem;
    font-weight: 600;
    color: #e5e7eb;
    background: radial-gradient(circle at center, rgba(129, 140, 248, 0.45), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(129, 140, 248, 0.85);
    box-shadow: 0 0 14px rgba(79, 70, 229, 0.8);
}

.hero-flow-step-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.hero-flow-step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e5e7eb;
}

.hero-flow-step-meta {
    font-size: 0.74rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.hero-dashboard-side {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.hero-dashboard-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, 0.95);
    background: rgba(15, 23, 42, 0.98);
    padding: 0.28rem 0.75rem;
    font-size: 0.74rem;
    color: #e5e7eb;
}

.hero-dashboard-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at center, #22c55e, transparent 55%);
}

/* در دسکتاپ، دو ستون کنار هم */
@media (min-width: 3650px) {
    .hero-dashboard-body {
        flex-direction: row;
        align-items: flex-start;
    }

    .hero-dashboard-flow {
        flex: 1.4;
    }

    .hero-dashboard-side {
        flex: 1;
    }
}
