/* ========================================
   BrainSeed AI — Landing Page Styles
   Premium Dark Theme with Glassmorphism
   ======================================== */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --text-primary: #f0f0f5;
    --text-secondary: #8b8b9e;
    --text-muted: #5a5a6e;

    --accent-purple: #8b5cf6;
    --accent-purple-light: #a78bfa;
    --accent-green: #10b981;
    --accent-green-light: #34d399;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;

    --gradient-primary: linear-gradient(135deg, #8b5cf6, #06b6d4);
    --gradient-secondary: linear-gradient(135deg, #10b981, #3b82f6);
    --gradient-hero: linear-gradient(135deg, #8b5cf6, #ec4899, #06b6d4);
    --gradient-card: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.05));

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-ar: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    --font-en: 'Inter', 'Segoe UI', Tahoma, sans-serif;

    --nav-height: 72px;
    --container-max: 1200px;
}

/* --- Light Mode Variables --- */
[data-theme="light"] {
    --bg-primary: #f8f9fc;
    --bg-secondary: #eef0f5;
    --bg-card: rgba(0, 0, 0, 0.02);
    --bg-card-hover: rgba(0, 0, 0, 0.04);
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);

    --text-primary: #1a1a2e;
    --text-secondary: #555570;
    --text-muted: #8888a0;

    --accent-purple: #7c3aed;
    --accent-purple-light: #6d28d9;
    --accent-green: #059669;
    --accent-green-light: #10b981;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 60px rgba(124, 58, 237, 0.08);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(248, 249, 252, 0.9);
}

[data-theme="light"] .floating-badge {
    background: rgba(248, 249, 252, 0.95);
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .mockup-browser {
    background: #fff;
}

[data-theme="light"] .browser-header {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .browser-url {
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .mock-nav-items span {
    background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mock-title {
    background: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .mock-subtitle {
    background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mock-card {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .mock-card-text::before {
    background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .comparison-item {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .orbit-dot {
    background: rgba(248, 249, 252, 0.95);
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .hero-glow {
    opacity: 0.12;
}

[data-theme="light"] .hero-glow-3 {
    opacity: 0.06;
}

[data-theme="light"] .btn-ghost {
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .btn-ghost:hover {
    background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .btn-outline:hover {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .hero-stats {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .proof-item {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .proof-item:hover {
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .cta-input-group {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .cta-input {
    color: var(--text-primary);
}

[data-theme="light"] .nav-links.active {
    background: rgba(248, 249, 252, 0.98);
}

[data-theme="light"] .faq-question {
    color: var(--text-primary);
}

[data-theme="light"] .footer-social a {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .footer-social a:hover {
    background: rgba(124, 58, 237, 0.08);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-ar);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.4s ease, color 0.4s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Utility --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-animated {
    background: linear-gradient(270deg, #8b5cf6, #ec4899, #06b6d4, #10b981, #8b5cf6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-ar);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-purple);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid transparent;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* --- Particles Canvas --- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.logo-img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-family: var(--font-en);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

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

.btn-nav {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- Theme Toggle Button --- */
.theme-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    color: var(--accent-purple-light);
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
    transform: rotate(20deg);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode (default): show moon, hide sun */
.theme-toggle .icon-sun {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

.theme-toggle .icon-moon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Light mode: show sun, hide moon */
[data-theme="light"] .theme-toggle .icon-sun {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

[data-theme="light"] .theme-toggle .icon-moon {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.04);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-purple);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-pink);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 12s ease-in-out infinite;
    opacity: 0.15;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-purple-light);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.price-highlight {
    color: var(--accent-green-light) !important;
    font-size: 1.2em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    width: fit-content;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-en);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus,
.stat-percent,
.stat-unit {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-purple-light);
    margin-right: 2px;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* --- Hero Visual (Browser Mockup) --- */
.hero-visual {
    position: relative;
}

.mockup-wrapper {
    position: relative;
    perspective: 1000px;
}

.mockup-browser {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-browser:hover {
    transform: rotateY(0) rotateX(0);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #28c840;
}

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-en);
    direction: ltr;
}

.browser-url svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.browser-content {
    padding: 20px;
    min-height: 300px;
}

/* Mock site inside browser */
.mock-site {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.mock-logo-placeholder {
    width: 80px;
    height: 12px;
    background: var(--gradient-primary);
    border-radius: 4px;
    opacity: 0.6;
}

.mock-nav-items {
    display: flex;
    gap: 12px;
}

.mock-nav-items span {
    width: 40px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.mock-hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
}

.mock-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-title {
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.mock-subtitle {
    width: 80%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.mock-btn {
    width: 60px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 10px;
    opacity: 0.7;
    margin-top: 4px;
}

.mock-hero-img {
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 8px;
}

.mock-cards {
    display: flex;
    gap: 10px;
}

.mock-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.mock-card-img {
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
}

.mock-card-text {
    padding: 8px;
    height: 20px;
    position: relative;
}

.mock-card-text::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    left: 8px;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

/* Floating badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    z-index: 2;
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge svg {
    flex-shrink: 0;
}

.floating-badge-1 {
    top: 10%;
    left: -20px;
    color: var(--accent-purple-light);
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: 30%;
    right: -30px;
    color: var(--accent-cyan);
    animation-delay: 1.5s;
}

.floating-badge-3 {
    bottom: 5%;
    left: 10%;
    color: var(--accent-green-light);
    animation-delay: 3s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--border-hover);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--accent-purple-light);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* --- Social Proof --- */
.social-proof {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-proof-title {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.proof-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.proof-item:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-purple-light);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- How It Works --- */
.how-it-works {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    right: 28px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-cyan), var(--accent-green));
    opacity: 0.3;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.step-card {
    flex: 1;
    padding: 28px;
}

.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    color: var(--accent-purple-light);
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Features --- */
.features {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
}

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

.feature-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:nth-child(1)::before {
    background: var(--gradient-primary);
}

.feature-card:nth-child(2)::before {
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, #06b6d4, #10b981);
}

.feature-card:nth-child(4)::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.feature-card:nth-child(5)::before {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.feature-card:nth-child(6)::before {
    background: linear-gradient(90deg, #10b981, #06b6d4);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-icon-1 {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple-light);
}

.feature-icon-2 {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-pink);
}

.feature-icon-3 {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
}

.feature-icon-4 {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.feature-icon-5 {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}

.feature-icon-6 {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- AI + Human Section --- */
.ai-human {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ai-human-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-human-content .section-tag {
    margin-bottom: 16px;
}

.ai-human-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.ai-human-content>p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.comparison-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.comparison-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.comparison-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.5rem;
}

.comparison-icon.ai {
    background: rgba(139, 92, 246, 0.1);
}

.comparison-icon.human {
    background: rgba(6, 182, 212, 0.1);
}

.comparison-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.comparison-item ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comparison-item li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    padding-right: 16px;
}

.comparison-item li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent-green);
    font-size: 0.75rem;
}

/* --- Orbit Animation --- */
.ai-human-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
}

.orbit-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.orbit-1 {
    width: 240px;
    height: 240px;
    margin-top: -120px;
    margin-left: -120px;
    animation: orbitRotate 20s linear infinite;
}

.orbit-2 {
    width: 360px;
    height: 360px;
    margin-top: -180px;
    margin-left: -180px;
    animation: orbitRotate 30s linear infinite reverse;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid var(--border-hover);
    border-radius: 50%;
    font-size: 1.1rem;
}

.orbit-1 .orbit-dot {
    --total: 4;
}

.orbit-2 .orbit-dot {
    --total: 5;
}

.orbit-1 .orbit-dot:nth-child(1) {
    top: -20px;
    left: 50%;
    margin-left: -20px;
}

.orbit-1 .orbit-dot:nth-child(2) {
    top: 50%;
    right: -20px;
    margin-top: -20px;
}

.orbit-1 .orbit-dot:nth-child(3) {
    bottom: -20px;
    left: 50%;
    margin-left: -20px;
}

.orbit-1 .orbit-dot:nth-child(4) {
    top: 50%;
    left: -20px;
    margin-top: -20px;
}

.orbit-2 .orbit-dot:nth-child(1) {
    top: -20px;
    left: 50%;
    margin-left: -20px;
}

.orbit-2 .orbit-dot:nth-child(2) {
    top: 20%;
    right: -20px;
}

.orbit-2 .orbit-dot:nth-child(3) {
    bottom: 20%;
    right: -20px;
}

.orbit-2 .orbit-dot:nth-child(4) {
    bottom: -20px;
    left: 50%;
    margin-left: -20px;
}

.orbit-2 .orbit-dot:nth-child(5) {
    top: 50%;
    left: -20px;
    margin-top: -20px;
}

.orbit-dot span {
    animation: orbitRotate 20s linear infinite reverse;
}

.orbit-2 .orbit-dot span {
    animation: orbitRotate 30s linear infinite;
}

/* --- Pricing --- */
.pricing {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    padding: 36px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-featured {
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.04));
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.1);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 28px;
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: var(--font-en);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled svg {
    color: var(--text-muted);
}

/* --- Target Audience --- */
.audience {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.audience-card {
    padding: 32px;
    text-align: center;
}

.audience-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.audience-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.audience-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- FAQ --- */
.faq {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-ar);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: right;
}

.faq-question svg {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- CTA --- */
.cta {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent-purple);
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.cta>.cta-content>p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-input-group {
    display: flex;
    width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.cta-input-group:focus-within {
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
}

.cta-input {
    width: 100%;
    flex: 1;
    padding: 16px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-ar);
    font-size: 0.9rem;
    direction: rtl;
    text-align: right;
    outline: none;
}

.cta-input::placeholder {
    color: var(--text-muted);
    direction: rtl;
}

.btn-cta {
    border-radius: var(--radius-xl);
    padding: 16px 32px;
    margin: 4px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cta-trust-item svg {
    color: var(--accent-green);
}

/* --- Footer --- */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-purple-light);
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-purple-light);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Projects Showcase --- */
.projects-showcase {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.projects-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.project-tab {
    padding: 10px 22px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.95rem;
    font-family: var(--font-ar);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-tab:hover {
    border-color: var(--accent-purple);
    color: var(--text-primary);
}

.project-tab.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-color: var(--accent-purple);
    color: var(--text-primary);
    font-weight: 600;
}

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

.project-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.project-preview {
    height: 200px;
    overflow: hidden;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    background-size: cover;
    background-position: top center;
    transition: transform 0.8s ease;
}

.project-card:nth-child(1) .project-placeholder {
    background-image: url('assets/mockups/restaurants.webp');
}

.project-card:nth-child(2) .project-placeholder {
    background-image: url('assets/mockups/restaurants_2.webp');
}

.project-card:nth-child(3) .project-placeholder {
    background-image: url('assets/mockups/restaurants_3.webp');
}

.project-card:nth-child(4) .project-placeholder {
    background-image: url('assets/mockups/shops.webp');
}

.project-card:nth-child(5) .project-placeholder {
    background-image: url('assets/mockups/shops_2.webp');
}

.project-card:nth-child(6) .project-placeholder {
    background-image: url('assets/mockups/shops_3.webp');
}

.project-card:nth-child(7) .project-placeholder {
    background-image: url('assets/mockups/clinics.webp');
}

.project-card:nth-child(8) .project-placeholder {
    background-image: url('assets/mockups/clinics_2.webp');
}

.project-card:nth-child(9) .project-placeholder {
    background-image: url('assets/mockups/clinics_3.webp');
}

.project-card:nth-child(10) .project-placeholder {
    background-image: url('assets/mockups/education.webp');
}

.project-card:nth-child(11) .project-placeholder {
    background-image: url('assets/mockups/education_2.webp');
}

.project-card:nth-child(12) .project-placeholder {
    background-image: url('assets/mockups/education_3.webp');
}

.project-card:nth-child(13) .project-placeholder {
    background-image: url('assets/mockups/salons.webp');
}

.project-card:nth-child(14) .project-placeholder {
    background-image: url('assets/mockups/salons_2.webp');
}

.project-card:nth-child(15) .project-placeholder {
    background-image: url('assets/mockups/salons_3.webp');
}

.project-card:nth-child(16) .project-placeholder {
    background-image: url('assets/mockups/contractors.webp');
}

.project-card:nth-child(17) .project-placeholder {
    background-image: url('assets/mockups/contractors_2.webp');
}

.project-card:nth-child(18) .project-placeholder {
    background-image: url('assets/mockups/contractors_3.webp');
}

.project-card:nth-child(19) .project-placeholder {
    background-image: url('assets/mockups/law.webp');
}

.project-card:nth-child(20) .project-placeholder {
    background-image: url('assets/mockups/law_2.webp');
}

.project-card:nth-child(21) .project-placeholder {
    background-image: url('assets/mockups/law_3.webp');
}

.project-card:nth-child(22) .project-placeholder {
    background-image: url('assets/mockups/car_rental.webp');
}

.project-card:nth-child(23) .project-placeholder {
    background-image: url('assets/mockups/car_rental_2.webp');
}

.project-card:nth-child(24) .project-placeholder {
    background-image: url('assets/mockups/car_rental_3.webp');
}

.project-card:hover .project-placeholder {
    transform: scale(1.05);
}

.project-placeholder span {
    font-size: 3.5rem;
    display: none;
}

.project-info {
    padding: 20px;
}

.project-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.project-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Our Story --- */
.our-story {
    padding: 80px 0;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.story-block {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.story-block:hover {
    transform: translateX(-8px);
    border-color: rgba(139, 92, 246, 0.3);
}

.story-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 16px;
}

.story-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.story-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- Pricing Notice & Desc --- */
.pricing-notice {
    text-align: center;
    margin-top: 32px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(6, 182, 212, 0.06));
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-notice svg {
    flex-shrink: 0;
    color: var(--accent-purple);
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* Light mode overrides for new sections */
[data-theme="light"] .project-tab.active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.12));
}

[data-theme="light"] .project-placeholder {
    background-color: rgba(124, 58, 237, 0.06);
}

[data-theme="light"] .story-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.08));
}

[data-theme="light"] .pricing-notice {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(6, 182, 212, 0.05));
    border-color: rgba(124, 58, 237, 0.12);
}

/* --- Scroll Reveal Animations --- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos][data-aos-delay="100"].aos-animate {
    transition-delay: 100ms;
}

[data-aos][data-aos-delay="200"].aos-animate {
    transition-delay: 200ms;
}

[data-aos][data-aos-delay="300"].aos-animate {
    transition-delay: 300ms;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .ai-human-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ai-human-visual {
        order: -1;
    }

    .orbit-container {
        width: 300px;
        height: 300px;
    }

    .orbit-1 {
        width: 180px;
        height: 180px;
        margin-top: -90px;
        margin-left: -90px;
    }

    .orbit-2 {
        width: 270px;
        height: 270px;
        margin-top: -135px;
        margin-left: -135px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-4px);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

    .story-block {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .btn-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 12px;
        padding: 15px 12px;
        width: 100%;
        max-width: 100%;
    }

    .hero-stats .stat-number {
        font-size: 1.3rem;
    }

    .hero-stats .stat-label {
        font-size: 0.65rem;
    }

    .stat-divider {
        width: 1px;
        height: 30px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .hero-actions .btn {
        width: auto;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects-tabs {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .project-tab {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .cta-input-group {
        flex-direction: row;
        align-items: center;
        padding: 5px;
        border-radius: 50px;
        gap: 0;
    }

    .cta-input {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.85rem;
        min-width: 0;
    }

    .btn-cta {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 50% !important;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-cta span {
        display: none;
    }

    .btn-cta svg {
        margin: 0;
        width: 24px;
        height: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .comparison {
        gap: 16px;
    }

    .comparison-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .comparison-item li {
        padding-right: 0;
    }

    .comparison-item li::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .proof-logos {
        gap: 12px;
    }

    .proof-item {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .step {
        gap: 12px;
    }

    .step-number {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1rem;
    }

    .step-card {
        padding: 20px;
    }

    .timeline-line {
        right: 21px;
    }

    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* --- Selection --- */
::selection {
    background: rgba(139, 92, 246, 0.3);
    color: #fff;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.5);
}