:root {
    --bg: #050816;
    --bg-card: #0f172a;
    --bg-soft: rgba(15, 23, 42, 0.8);
    --primary: #22c55e;
    --primary-soft: rgba(34, 197, 94, 0.12);
    --accent: #38bdf8;
    --accent-soft: rgba(56, 189, 248, 0.12);
    --danger: #fb7185;
    --radius-xl: 24px;
    --radius-lg: 18px;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.7);
    --transition-fast: 0.2s ease-out;
    --gradient-main: linear-gradient(135deg, #22c55e, #38bdf8);
    --gradient-soft: radial-gradient(circle at top, rgba(56, 189, 248, 0.12), transparent 60%);
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    min-height: 100vh;
    font-family: "Vazirmatn", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
            radial-gradient(circle at top, rgba(56,189,248,0.15), transparent 55%),
            radial-gradient(circle at bottom, rgba(34,197,94,0.15), transparent 60%),
            #020617;
    color: #e5e7eb;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 16px 64px;
    position: relative;
    z-index: 1;
}

.glow-orb {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56,189,248,0.25), transparent 70%);
    filter: blur(4px);
    opacity: 0.8;
    pointer-events: none;
    inset-inline-end: -140px;
    top: -120px;
    z-index: 0;
}

.glow-orb-2 {
    position: fixed;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(34,197,94,0.25), transparent 70%);
    filter: blur(6px);
    opacity: 0.6;
    pointer-events: none;
    inset-inline-start: -120px;
    bottom: -80px;
    z-index: 0;
}

.card {
    background: rgba(15, 23, 42, 0.92);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.9);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9ca3af;
}

.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.15);
    color: #bbf7d0;
    font-size: 11px;
}

.badge-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 16px;
    background: radial-gradient(circle at 10% 0, #22c55e, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 14px 28px rgba(34, 197, 94, 0.55);
    color: #020617;
}

.brand-text-main {
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.03em;
}

.brand-text-sub {
    font-size: 11px;
    color: #9ca3af;
}

nav {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #9ca3af;
}

.nav-link {
    padding: 6px 10px;
    border-radius: 999px;
    transition:
            background var(--transition-fast),
            color var(--transition-fast),
            transform var(--transition-fast);
    cursor: pointer;
}

.nav-link:hover {
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    transform: translateY(-1px);
}

.nav-cta {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--gradient-main);
    box-shadow: 0 14px 28px rgba(34, 197, 94, 0.55);
    color: #020617;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    transition:
            transform var(--transition-fast),
            box-shadow var(--transition-fast),
            filter var(--transition-fast);
}

.nav-cta i {
    font-size: 16px;
}

.nav-cta:hover {
    transform: translateY(-1px) translateZ(0);
    filter: brightness(1.06);
    box-shadow: 0 18px 32px rgba(34, 197, 94, 0.7);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 11px;
}

.lang-btn {
    border: none;
    outline: none;
    background: transparent;
    color: #9ca3af;
    border-radius: 999px;
    padding: 3px 8px;
    cursor: pointer;
    font-size: 11px;
    transition:
            background var(--transition-fast),
            color var(--transition-fast);
}

.lang-btn.active {
    background: var(--primary-soft);
    color: #bbf7d0;
}

.layout-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
    margin-bottom: 32px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 24px 22px 26px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 0 0, rgba(56,189,248,0.16), transparent 55%),
            radial-gradient(circle at 100% 100%, rgba(34,197,94,0.16), transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-header-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.hero-title span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    color: #9ca3af;
    font-size: 13px;
    max-width: 460px;
}

.hero-subtitle b {
    color: #e5e7eb;
    font-weight: 600;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 18px;
}

.btn-primary {
    background: var(--gradient-main);
    border-radius: 999px;
    padding: 10px 18px;
    border: none;
    outline: none;
    color: #020617;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition:
            transform var(--transition-fast),
            box-shadow var(--transition-fast),
            filter var(--transition-fast);
}

.btn-primary i {
    font-size: 18px;
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.07);
}

.btn-secondary {
    border-radius: 999px;
    padding: 10px 15px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition:
            background var(--transition-fast),
            color var(--transition-fast),
            transform var(--transition-fast),
            box-shadow var(--transition-fast);
}

.btn-secondary i {
    font-size: 18px;
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 1);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.85);
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-meta-pill {
    font-size: 11px;
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hero-meta-pill strong {
    color: #e5e7eb;
    font-weight: 600;
}

.hero-highlight-box {
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 15px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px dashed rgba(148, 163, 184, 0.45);
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.hero-highlight-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbf7d0;
    flex-shrink: 0;
}

.hero-highlight-box b {
    color: #e5e7eb;
}

.hero-right {
    padding: 18px 16px 18px;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-soft);
    opacity: 0.6;
}

.hero-right-inner {
    position: relative;
    z-index: 1;
}

.hero-right-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.hero-right-title {
    font-size: 14px;
    font-weight: 600;
}

.hero-right-sub {
    font-size: 11px;
    color: #9ca3af;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.pill {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pill i {
    font-size: 14px;
}

.mock-window {
    margin-top: 10px;
    background: #020617;
    border-radius: 18px;
    border: 1px solid rgba(51, 65, 85, 0.75);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.mock-window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: radial-gradient(circle at 0 0, rgba(56,189,248,0.16), transparent 60%);
    border-bottom: 1px solid rgba(51, 65, 85, 0.8);
}

.mock-dots {
    display: flex;
    gap: 5px;
    align-items: center;
}

.mock-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(75, 85, 99, 0.95);
}

.mock-dot.green {
    background: #22c55e;
}

.mock-dot.yellow {
    background: #eab308;
}

.mock-dot.red {
    background: #f97373;
}

.mock-input-bar {
    flex: 1;
    margin: 0 10px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(51, 65, 85, 0.8);
    font-size: 10px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 8px;
    direction: ltr;
}

.mock-input-bar i {
    font-size: 13px;
}

.mock-body {
    padding: 12px 12px 14px;
    font-size: 11px;
    max-height: 270px;
    overflow: hidden;
}

.mock-message {
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.mock-avatar {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, #22c55e, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #020617;
}

.mock-bubble {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 16px;
    padding: 8px 10px;
    border: 1px solid rgba(51, 65, 85, 0.9);
    flex: 1;
}

.mock-bubble-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.mock-bubble-title {
    font-size: 11px;
    color: #e5e7eb;
    font-weight: 600;
}

.mock-bubble-time {
    font-size: 9px;
    color: #6b7280;
}

.mock-bubble-body {
    font-size: 10px;
    color: #9ca3af;
}

.mock-badge-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.mock-badge {
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(55, 65, 81, 0.9);
    color: #9ca3af;
}

.mock-progress {
    margin-top: 8px;
    font-size: 10px;
    color: #9ca3af;
}

.progress-bar {
    width: 100%;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(55, 65, 81, 0.9);
    overflow: hidden;
    height: 8px;
    margin-top: 5px;
    position: relative;
}

.progress-bar-fill {
    position: absolute;
    inset: 0;
    transform-origin: right center;
    transform: scaleX(0.45);
    background: var(--gradient-main);
    transition: transform 0.4s ease-out;
}

.section {
    margin-top: 28px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    font-size: 20px;
}

.section-subtext {
    font-size: 12px;
    color: #9ca3af;
    max-width: 360px;
}

.pill-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-filter {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    color: #9ca3af;
    background: rgba(15, 23, 42, 0.9);
    cursor: pointer;
    transition:
            background var(--transition-fast),
            color var(--transition-fast),
            border var(--transition-fast),
            transform var(--transition-fast);
}

.pill-filter.active {
    background: var(--primary-soft);
    border-color: var(--primary);
    color: #bbf7d0;
    transform: translateY(-1px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.feature-card {
    background: rgba(15, 23, 42, 0.94);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(51, 65, 85, 0.9);
    padding: 12px 11px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition:
            transform var(--transition-fast),
            box-shadow var(--transition-fast),
            border var(--transition-fast),
            background var(--transition-fast);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: -20%;
    opacity: 0;
    background: radial-gradient(circle at 0 0, rgba(56,189,248,0.18), transparent 55%);
    transition:
            opacity 0.35s ease-out,
            transform 0.35s ease-out;
    transform: translate3d(0, 12px, 0);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    border-color: rgba(56, 189, 248, 0.7);
    background: rgba(15, 23, 42, 0.98);
}

.feature-card:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 2px;
    color: #e5e7eb;
}

.feature-title {
    font-weight: 600;
    font-size: 13px;
    color: #e5e7eb;
}

.feature-desc {
    font-size: 11px;
    color: #9ca3af;
    flex: 1;
}

.feature-tag {
    font-size: 9px;
    padding: 3px 7px;
    border-radius: 999px;
    align-self: flex-start;
    margin-top: 4px;
}

.feature-tag.green {
    background: var(--primary-soft);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.7);
}

.feature-tag.blue {
    background: var(--accent-soft);
    color: #e0f2fe;
    border: 1px solid rgba(56, 189, 248, 0.7);
}

.feature-tag.pink {
    background: rgba(236,72,153,0.12);
    color: #fbcfe8;
    border: 1px solid rgba(236, 72, 153, 0.7);
}

.stats-section {
    margin-top: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.stats-card {
    padding: 14px 14px 16px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.9);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.stat-box {
    padding: 10px 9px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(51, 65, 85, 0.9);
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    overflow: hidden;
}

.stat-box::after {
    content: "";
    position: absolute;
    inset-inline-end: -16px;
    bottom: -16px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56,189,248,0.4), transparent 60%);
    opacity: 0.25;
}

.stat-label {
    font-size: 10px;
    color: #9ca3af;
}

.stat-value {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-desc {
    font-size: 10px;
    color: #6b7280;
}

.stats-note {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 10px;
}

.stats-highlight-card {
    padding: 14px 14px 16px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(56, 189, 248, 0.6);
    background:
            radial-gradient(circle at 0 0, rgba(56,189,248,0.18), transparent 55%),
            rgba(15, 23, 42, 0.98);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.95);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stats-highlight-title {
    font-size: 14px;
    font-weight: 600;
}

.stats-highlight-sub {
    font-size: 11px;
    color: #9ca3af;
}

.stats-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 8px;
}

.stats-highlight-item {
    border-radius: 14px;
    border: 1px solid rgba(30, 64, 175, 0.6);
    background: rgba(15, 23, 42, 0.96);
    padding: 8px 9px;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-highlight-label {
    color: #e5e7eb;
    font-weight: 500;
}

.stats-highlight-desc {
    font-size: 10px;
    color: #9ca3af;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 10px;
    color: #cbd5f5;
    margin-top: 6px;
    align-self: flex-start;
}

.stats-badge i {
    font-size: 14px;
}

.faq-section {
    margin-top: 26px;
    padding: 18px 18px 20px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.9);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
}

.faq-title {
    font-size: 16px;
    font-weight: 700;
}

.faq-sub {
    font-size: 12px;
    color: #9ca3af;
    max-width: 360px;
}

.faq-list {
    margin-top: 8px;
    border-radius: 18px;
    border: 1px solid rgba(30, 64, 175, 0.7);
    background:
            radial-gradient(circle at 0 0, rgba(37,99,235,0.18), transparent 55%),
            rgba(15, 23, 42, 0.98);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(30, 64, 175, 0.4);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 9px 11px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.faq-q-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-q-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.faq-toggle {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #bfdbfe;
    transform: translateY(1px);
}

.faq-answer {
    padding: 0 42px 10px 11px;
    font-size: 11px;
    color: #cbd5f5;
    display: none;
}

.faq-answer.open {
    display: block;
}

.faq-answer strong {
    color: #e5e7eb;
}

.order-section {
    margin-top: 26px;
    padding: 18px 18px 20px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.9);
}

.order-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.order-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.order-input,
.order-textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: rgba(15, 23, 42, 0.96);
    padding: 8px 12px;
    font-size: 12px;
    color: #e5e7eb;
    outline: none;
    transition:
            border var(--transition-fast),
            box-shadow var(--transition-fast),
            background var(--transition-fast);
}

.order-input::placeholder,
.order-textarea::placeholder {
    color: #6b7280;
}

.order-input:focus,
.order-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.55);
    background: #020617;
}

.order-textarea {
    min-height: 90px;
    resize: vertical;
}

.order-label {
    font-size: 11px;
    color: #9ca3af;
}

.order-highlight {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 10px;
}

footer {
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    font-size: 11px;
    color: #6b7280;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-link {
    cursor: pointer;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: #d1d5db;
}

.footer-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(148, 163, 184, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
}

.footer-badge i {
    font-size: 16px;
}

.footer-copy {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

.text-en {
    display: none;
}

body.lang-en .text-fa {
    display: none;
}

body.lang-en .text-en {
    display: inline;
}

@keyframes chatFade {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mock-message {
    opacity: 0;
    animation: chatFade 0.7s ease-out forwards;
}

.mock-message:nth-child(1) {
    animation-delay: 0.25s;
}

.mock-message:nth-child(2) {
    animation-delay: 0.7s;
}

.mock-message:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes fileCardIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mock-file-card {
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.8);
    background:
            radial-gradient(circle at 0 0, rgba(34,197,94,0.18), transparent 55%),
            rgba(15, 23, 42, 0.98);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fileCardIn 0.6s ease-out 1.6s forwards;
    opacity: 0;
}

.mock-file-thumb {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #bbf7d0;
}

.mock-file-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mock-file-title {
    font-size: 11px;
    color: #e5e7eb;
    font-weight: 600;
}

.mock-file-sub {
    font-size: 10px;
    color: #9ca3af;
}

@media (max-width: 900px) {
    .layout-two-col {
        grid-template-columns: minmax(0, 1fr);
    }
    .stats-section {
        grid-template-columns: minmax(0, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    header {
        flex-wrap: wrap;
    }
    nav {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .page-shell {
        padding-inline: 14px;
    }
    .features-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-title {
        font-size: 24px;
    }
    .hero-subtitle {
        font-size: 12px;
    }
    .faq-answer {
        padding-inline-start: 36px;
    }
    nav {
        display: none;
    }
}
.brand-logo img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    display: block;
}
.recent-mini {
    margin-top: 32px;
}

.recent-mini-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.recent-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #e5e7eb;
    opacity: 0.9;
}

.recent-mini-title i {
    font-size: 16px;
    color: #38bdf8;
}

.recent-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 900px) {
    .recent-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.recent-mini-item {
    position: relative;
    padding: 10px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%), rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    text-decoration: none;
    min-height: 120px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.recent-mini-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.7);
    border-color: rgba(56, 189, 248, 0.6);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.26), transparent 60%), rgba(15, 23, 42, 0.96);
}

.recent-mini-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(15, 23, 42, 0.9);
    color: #22c55e;
}

.recent-mini-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.recent-mini-label {
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    gap: 4px;
    align-items: center;
}

.recent-mini-title-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    color: #e5e7eb;
    max-height: 3.1em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.seo-cover {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 55%);
}

.seo-cover img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
}
.recent-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 900px) {
    .recent-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.recent-mini-item {
    position: relative;
    padding: 8px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%), rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    min-height: auto;
}

.recent-mini-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.7);
    border-color: rgba(56, 189, 248, 0.6);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.26), transparent 60%), rgba(15, 23, 42, 0.96);
}

.recent-mini-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
    border: 1px solid rgba(148, 163, 184, 0.35);
    flex-shrink: 0;
}

.recent-mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recent-mini-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}
.recent-mini-item.card {
    border-radius: 16px;
    box-shadow: none;
    backdrop-filter: none;
}
.source-box {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.source-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 12px;
}

.source-label i {
    font-size: 16px;
    color: #38bdf8;
}

.source-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 12px;
    background: var(--primary-soft);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #bbf7d0;
    text-decoration: none;
    transition: 0.2s ease-out;
}

.source-btn:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.8);
    transform: translateY(-1px);
}

.source-btn i {
    font-size: 15px;
}
