/*
 * Hooshyab WordPress Plugin Landing Page Stylesheet
 * Premium RTL Design Language - 2026 SaaS Style
 */

/* 1. Global Reset & Variables */
/* Google Fonts loaded via index.html <link> to improve parallel loading speed */

:root {
    --primary: #83CA4B;
    --primary-glow: rgba(131, 202, 75, 0.12);
    --primary-hover: #72B33E;
    --secondary: #FFFFFF;
    --secondary-light: #f8fafc;
    --bg-light: #030303;
    --bg-dark: #08080a;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-bg-dark: rgba(255, 255, 255, 0.04);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-dark: rgba(255, 255, 255, 0.12);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-light: #64748b;
    --radius-lg: 20px;
    --radius-md: 12px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 50px rgba(131, 202, 75, 0.15);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    direction: rtl;
    text-align: right;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: #18181b;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Common Typography & Layout Utilities */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.4;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
    font-weight: 400;
    text-align: justify;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(131, 202, 75, 0.06);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(131, 202, 75, 0.12);
    margin-bottom: 24px;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', 'Vazirmatn', sans-serif;
    letter-spacing: -0.01em;
}

.badge:hover {
    background: rgba(131, 202, 75, 0.1);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 2. Premium Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(3, 3, 3, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -4px rgba(131, 202, 75, 0.3);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: white;
    stroke-width: 2;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', 'Vazirmatn', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 24px -6px rgba(131, 202, 75, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -6px rgba(131, 202, 75, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    margin: 5px auto;
    transition: var(--transition);
}

/* 3. Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(131, 202, 75, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-glow-2 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(131, 202, 75, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-logo-box {
    margin-bottom: 24px;
    height: 72px;
    padding: 0 28px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: pulse 3s infinite ease-in-out;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.5;
    max-width: 850px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin-bottom: 36px;
    line-height: 1.85;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Floating AI Icons animation */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    will-change: transform;
}

.float-icon svg {
    width: 28px;
    height: 28px;
}

.fi-1 { top: 25%; left: 10%; animation: float 6s infinite ease-in-out; }
.fi-2 { top: 60%; left: 15%; animation: float 8s infinite ease-in-out 1s; }
.fi-3 { top: 20%; right: 12%; animation: float 7s infinite ease-in-out 0.5s; }
.fi-4 { top: 65%; right: 10%; animation: float 9s infinite ease-in-out 1.5s; }

/* 4. AI Platforms Grid */
.ai-platforms-section {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.ai-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.ai-logo-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.ai-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(131, 202, 75, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.ai-logo-card svg {
    width: 44px;
    height: 44px;
}

.ai-logo-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

/* 5. Features Section */
.features-section {
    background-color: var(--bg-light);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(131, 202, 75, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(131, 202, 75, 0.18);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.03);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(131, 202, 75, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.feature-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* 6. Dashboard Showcase Section */
.showcase-section {
    background-color: var(--bg-light);
    overflow: hidden;
    position: relative;
}

.mockup-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

/* MacBook Mockup Shell */
.macbook-shell {
    background: #111111;
    border-radius: 20px 20px 0 0;
    padding: 16px;
    border: 4px solid #333333;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.macbook-screen-dots {
    display: flex;
    gap: 8px;
    position: absolute;
    top: 8px;
    right: 20px;
}

.macbook-screen-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.macbook-screen-dot.red { background: #ff5f56; }
.macbook-screen-dot.yellow { background: #ffbd2e; }
.macbook-screen-dot.green { background: #27c93f; }

.macbook-screen {
    background: #0E121F;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.macbook-base {
    background: #E2E8F0;
    height: 16px;
    border-radius: 0 0 16px 16px;
    border-bottom: 4px solid #CBD5E1;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.macbook-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 6px;
    background: #94A3B8;
    border-radius: 0 0 8px 8px;
}


/* Dashboard Mockup Layout */
.db-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #11131e;
    display: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}
.db-screenshot.active {
    display: block;
    opacity: 1;
}

.dashboard-mockup {
    display: flex;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    font-size: 11px;
}

.db-sidebar {
    width: 160px;
    background: #0B0E17;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.db-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
}

.db-sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.db-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.db-menu-item.active, .db-menu-item:hover {
    background: rgba(99, 91, 255, 0.15);
    color: #635BFF;
}

.db-main {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    background: #0E121F;
    display: none;
}

.db-main.active {
    display: block;
}

.db-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.db-title {
    font-size: 16px;
    color: white;
}

.db-status-badge {
    background: rgba(39, 201, 63, 0.15);
    color: #27c93f;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 600;
}

.db-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.db-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.db-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
}

.db-card-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.db-card-val {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

/* File list style in mockup */
.db-file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.db-file-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.db-file-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.db-file-badge {
    padding: 2px 6px;
    font-size: 9px;
    border-radius: 4px;
    font-weight: 700;
}

.db-file-badge.db-badge-green { background: rgba(39, 201, 63, 0.15); color: #27c93f; }
.db-file-badge.db-badge-blue { background: rgba(99, 91, 255, 0.15); color: #635BFF; }

.db-btn {
    padding: 6px 12px;
    background: #635BFF;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-weight: 600;
}

/* Slider Controls for Showcase */
.showcase-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: var(--transition);
}

.showcase-dot.active {
    width: 28px;
    border-radius: 50px;
    background: var(--primary);
}

/* 7. AI Files Cards */
.ai-files-section {
    background-color: var(--bg-light);
}

.files-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.file-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.file-card:hover {
    transform: translateY(-8px);
    border-color: rgba(131, 202, 75, 0.15);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-md);
}

.file-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.file-badge {
    background: rgba(131, 202, 75, 0.06);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(131, 202, 75, 0.12);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.file-icon {
    color: var(--text-light);
}

.file-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary);
}

.file-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.file-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

.file-preview-btn {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.file-preview-btn:hover {
    color: var(--primary-hover);
}

/* AI File Overlay Modal/Code Preview Drawer */
.preview-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 480px;
    max-width: 100%;
    height: 100%;
    background: #060608;
    z-index: 2000;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    direction: ltr; /* code remains ltr */
    text-align: left;
}

.preview-drawer.open {
    right: 0;
}

.drawer-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
}

.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close:hover {
    color: #FFFFFF;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.drawer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    text-align: right;
}

.code-container {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    overflow-x: auto;
    position: relative;
}

.code-block {
    font-family: 'Plus Jakarta Sans', 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.copy-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 6px 12px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 0.75rem;
    font-family: 'Vazirmatn', sans-serif;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--primary);
    color: white;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* 8. AI Optimization Score Section */
.optimization-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.opt-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.opt-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.opt-content {
    flex: 1.2;
}

/* SVG Radial Readiness Score Chart */
.score-circle-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}

.score-svg {
    transform: rotate(-90deg);
}

.score-bg-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 14;
}

.score-progress-circle {
    fill: none;
    stroke: url(#scoreGradient);
    stroke-width: 14;
    stroke-linecap: round;
    stroke-dasharray: 628;
    stroke-dashoffset: 628;
    transition: stroke-dashoffset 2s cubic-bezier(0.1, 1, 0.1, 1);
}

.score-text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--secondary);
    line-height: 1;
}

.score-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 4px;
}

/* Statistics Counters */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 9. Identity Center Section */
.identity-section {
    background-color: var(--bg-light);
}

.identity-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.identity-content {
    flex: 1.2;
}

.identity-visual {
    flex: 1;
    position: relative;
}

/* Identity Builder Illustration */
.identity-illustration {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.id-card-sample {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transform: rotate(2deg);
    transition: var(--transition);
}

.id-card-sample:hover {
    transform: rotate(0deg) scale(1.02);
}

.id-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.id-avatar {
    width: 44px;
    height: 44px;
    background: rgba(131, 202, 75, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
}

.id-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
}

.id-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

.id-field {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.id-field-lbl { color: var(--text-secondary); }
.id-field-val { color: var(--secondary); font-weight: 600; }

.id-tag {
    background: rgba(39, 201, 63, 0.08);
    color: #27c93f;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* 10. Content Analysis Section */
.content-section {
    background-color: var(--bg-light);
}

/* Interactive Timeline */
.timeline-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 32px;
    width: 2px;
    background: rgba(131, 202, 75, 0.15);
}

.timeline-item {
    position: relative;
    padding-right: 80px;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    right: 21px;
    top: 4px;
    width: 24px;
    height: 24px;
    background: #030303;
    border: 4px solid var(--primary);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    background: var(--primary);
    transform: scale(1.2);
}

.timeline-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateX(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(131, 202, 75, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.timeline-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary);
}

.timeline-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* 11. Installation Guide */
.install-section {
    background-color: var(--bg-light);
}

.install-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.install-tab-btn {
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', 'Vazirmatn', sans-serif;
}

.install-tab-btn.active {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 8px 20px -5px rgba(131, 202, 75, 0.4);
}

.install-panes {
    max-width: 700px;
    margin: 0 auto;
}

.features-panes {
    width: 100%;
    margin: 0 auto;
}

.grid-4-cols {
    grid-template-columns: repeat(4, 1fr);
}

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

.install-pane {
    display: none;
}

.install-pane.active {
    display: block;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(131, 202, 75, 0.12);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 40px;
    height: 40px;
    background: rgba(131, 202, 75, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--secondary);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.code-snippet {
    background: #060608;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px 16px;
    color: #cbd5e1;
    font-family: 'Plus Jakarta Sans', monospace;
    font-size: 0.85rem;
    margin-top: 10px;
    direction: ltr;
    text-align: left;
    display: inline-block;
}

/* 12. FAQ Section */
.faq-section {
    background-color: var(--bg-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(131, 202, 75, 0.12);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: var(--shadow-sm);
}

.faq-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-item.active .faq-header {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--text-light);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-content {
    padding: 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: justify;
}

/* 13. Dynamic Call To Action */
.cta-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: linear-gradient(135deg, rgba(131, 202, 75, 0.1) 0%, rgba(131, 202, 75, 0.02) 100%);
    border: 1px solid rgba(131, 202, 75, 0.15);
    box-shadow: 0 20px 50px rgba(131, 202, 75, 0.08);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    text-align: center;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(131, 202, 75, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(131, 202, 75, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 36px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

.cta-btn-wrapper {
    position: relative;
    z-index: 2;
}

/* 14. Premium Footer Redesign */
.footer {
    position: relative;
    background-color: var(--bg-dark);
    padding: 100px 0 40px;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
    z-index: 2;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(131, 202, 75, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-link::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
    margin-left: 0;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-link:hover::before {
    width: 10px;
    opacity: 1;
    margin-left: 4px;
}

/* Redesigned Glassmorphic Footer Badges Grid */
.footer-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
}

.footer-badge-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.footer-badge-card:hover {
    background: var(--card-bg-dark);
    border-color: rgba(131, 202, 75, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(131, 202, 75, 0.08);
}

.badge-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.badge-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.footer-badge-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--transition);
}

.footer-badge-card:hover .footer-badge-logo {
    transform: scale(1.05);
    opacity: 1;
}

/* Premium Social Icons */
.footer-brand .social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-brand .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-brand .social-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.footer-brand .social-link:hover {
    background: rgba(131, 202, 75, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(131, 202, 75, 0.15);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* 15. Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-md); }
    50% { transform: scale(1.05); box-shadow: var(--shadow-glow); }
}

/* Scroll reveal items */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Delay modifiers */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Button Hover Ripple Animation */
.btn-hover-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Logo Marquee Styling */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 24px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: scroll-marquee 25s linear infinite;
    min-width: 100%;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.7;
    transition: var(--transition);
}

.marquee-item:hover {
    opacity: 1;
    color: var(--primary);
}

.marquee-item svg {
    width: 24px;
    height: 24px;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* ==========================================
   14. Theme Toggle & Light Mode Overrides
========================================== */

/* Theme Toggle Button Style */
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.theme-toggle-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
    transition: var(--transition);
}

body.light-mode .theme-toggle-btn .sun-icon {
    display: none;
}
body:not(.light-mode) .theme-toggle-btn .moon-icon {
    display: none;
}
body.light-mode .theme-toggle-btn .moon-icon {
    display: block;
}
body:not(.light-mode) .theme-toggle-btn .sun-icon {
    display: block;
}



/* ==========================================
   Light Mode Theme Overrides
========================================== */
body.light-mode {
    --bg-light: #f8fafc; /* Slate 50 */
    --bg-dark: #ffffff; /* White */
    --secondary: #0f172a; /* Slate 900 for titles */
    --secondary-light: #1e293b; /* Slate 800 */
    --text-primary: #0f172a; /* Slate 900 */
    --text-secondary: #475569; /* Slate 600 */
    --text-light: #64748b; /* Slate 500 */
    --border-color: rgba(0, 0, 0, 0.06);
    --border-color-dark: rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.08);
}

body.light-mode .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
}

body.light-mode .theme-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.12);
}

body.light-mode .gradient-text {
    background: linear-gradient(135deg, #0f172a 30%, #83CA4B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

body.light-mode .btn-secondary {
    background: rgba(0, 0, 0, 0.02);
    color: var(--secondary);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-mode .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.12);
}

/* Overriding transparency for dark elements */
body.light-mode .feature-card,
body.light-mode .ai-logo-card,
body.light-mode .info-card,
body.light-mode .installation-step,
body.light-mode .faq-accordion,
body.light-mode .faq-item,
body.light-mode .price-card,
body.light-mode .testimonial-card,
body.light-mode .card,
body.light-mode .hero-logo-box,
body.light-mode .floating-elements .float-icon,
body.light-mode .step-card,
body.light-mode .file-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
}

body.light-mode .feature-card:hover,
body.light-mode .ai-logo-card:hover,
body.light-mode .info-card:hover,
body.light-mode .faq-item:hover,
body.light-mode .price-card:hover,
body.light-mode .hero-logo-box:hover,
body.light-mode .floating-elements .float-icon:hover,
body.light-mode .step-card:hover,
body.light-mode .file-card:hover {
    background: #ffffff;
    border-color: rgba(131, 202, 75, 0.3);
    box-shadow: 0 20px 40px -15px rgba(131, 202, 75, 0.12);
}

body.light-mode .file-footer {
    border-top-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .cta-box {
    background: linear-gradient(135deg, #72B33E 0%, #5b8f2d 100%);
    box-shadow: 0 20px 50px rgba(131, 202, 75, 0.25);
    border-color: transparent;
}
body.light-mode .cta-box .cta-title {
    color: #FFFFFF;
}
body.light-mode .cta-box .cta-desc {
    color: rgba(255, 255, 255, 0.85);
}

body.light-mode .install-tab-btn {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-secondary);
}
body.light-mode .install-tab-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.12);
}
body.light-mode .install-tab-btn.active {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

/* Ensure marquee container uses variable background */
body.light-mode .marquee-container {
    background: rgba(0, 0, 0, 0.01);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}



/* Mobile Nav Menu light-mode override */
body.light-mode .nav-menu {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(0, 0, 0, 0.08);
}

/* ==========================================
   15. Comparison Table Section Styling
========================================== */
.comparison-section {
    background: var(--bg-light);
    position: relative;
}

.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
}

.comparison-table th, 
.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.comparison-table th {
    font-weight: 700;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.01);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

.feature-name {
    font-weight: 600;
    color: var(--secondary);
}

/* Hooshyab highlighted column */
.hooshyab-col {
    background: rgba(131, 202, 75, 0.02);
    font-weight: 700;
}

.comparison-table th.hooshyab-col {
    background: rgba(131, 202, 75, 0.04);
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* Badges styling */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* Status colors */
.status-full {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.15);
}
.dot-green {
    background-color: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.status-limited {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.15);
}
.dot-yellow {
    background-color: #eab308;
    box-shadow: 0 0 8px #eab308;
}

.status-none {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.15);
}
.dot-red {
    background-color: #ef4444;
}

/* Light mode adjustments */
body.light-mode .comparison-table-wrapper {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
}

body.light-mode .comparison-table th {
    background: rgba(0, 0, 0, 0.01);
}

body.light-mode .comparison-table tr:hover td {
    background: rgba(0, 0, 0, 0.005);
}

body.light-mode .hooshyab-col {
    background: rgba(131, 202, 75, 0.01);
}

body.light-mode .comparison-table th.hooshyab-col {
    background: rgba(131, 202, 75, 0.03);
}

/* ==========================================
   16. React Bits Premium Integrated Components
   ========================================== */

/* 16.1. Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #ec4899 50%, #06b6d4 100%);
    z-index: 10001;
    width: 0%;
    transform-origin: top left;
    transition: width 0.1s ease-out;
}

/* 16.2. Aurora Background */
.aurora-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.35;
    filter: blur(80px);
    pointer-events: none;
}
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: aurora-flow 25s infinite alternate ease-in-out;
    will-change: transform;
}
.aurora-blob-1 {
    top: -15%;
    left: -15%;
    width: 55vw;
    height: 55vw;
    background: var(--primary);
}
.aurora-blob-2 {
    bottom: -15%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: #06b6d4;
    animation-delay: -6s;
    animation-duration: 30s;
}
.aurora-blob-3 {
    top: 20%;
    right: -15%;
    width: 50vw;
    height: 50vw;
    background: #8b5cf6;
    animation-delay: -12s;
    animation-duration: 22s;
}
@keyframes aurora-flow {
    0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate3d(6%, -8%, 0) scale(1.08) rotate(120deg);
    }
    66% {
        transform: translate3d(-6%, 8%, 0) scale(0.92) rotate(240deg);
    }
    100% {
        transform: translate3d(3%, -3%, 0) scale(1.04) rotate(360deg);
    }
}

/* 16.3. Shiny Text */
.shiny-text {
    background: linear-gradient(120deg, rgba(255,255,255,0.25) 30%, rgba(255,255,255,1) 50%, rgba(255,255,255,0.25) 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shine-sweep 4s infinite linear;
}
body.light-mode .shiny-text {
    background: linear-gradient(120deg, rgba(3,3,3,0.3) 30%, rgba(3,3,3,0.9) 50%, rgba(3,3,3,0.3) 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@keyframes shine-sweep {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

/* 16.4. Spotlight Cards (Implicit inherit) */
.feature-card, .file-card, .step-card, .hero-logo-box {
    position: relative;
    overflow: hidden;
}
.feature-card::after, .file-card::after, .step-card::after, .hero-logo-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(255, 255, 255, 0.05),
        transparent 80%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.feature-card:hover::after, .file-card:hover::after, .step-card:hover::after, .hero-logo-box:hover::after {
    opacity: 1;
}

/* 16.5. Magnetic Buttons */
.btn-magnetic {
    position: relative;
    display: inline-flex;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* 16.6. Glass Cards (Implicit Upgrade) */
.feature-card, .file-card, .step-card, .hero-logo-box {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.03) !important;
}
body.light-mode .feature-card, 
body.light-mode .file-card, 
body.light-mode .step-card,
body.light-mode .hero-logo-box {
    background: rgba(255, 255, 255, 0.55) !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.04),
        inset 0 1px 1px rgba(0, 0, 0, 0.01) !important;
}

/* 16.7. Mouse Glow (Section Level) */
.mouse-glow-container {
    position: relative;
}
.mouse-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(131, 202, 75, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.5s ease;
    will-change: transform;
}

/* 16.8. Marquee Logo Loop Fade Edges */
.marquee-container {
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

/* 16.9. WebGL Prism Canvas Container */
.hero-prism-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}

/* Theme-specific logo visibility */
body.light-mode .logo-dark {
    display: none !important;
}
body.light-mode .logo-light {
    display: inline-block !important;
}
body:not(.light-mode) .logo-dark {
    display: inline-block !important;
}
body:not(.light-mode) .logo-light {
    display: none !important;
}

/* Light mode adjustment for white logos in footer badges */
body.light-mode .footer-badge-logo {
    filter: brightness(0);
    opacity: 0.75;
}
body.light-mode .footer-badge-card:hover .footer-badge-logo {
    opacity: 0.95;
}
