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

:root {
    --navbar-height: 72px;
    --section-padding-y: 48px;
    --section-padding-y-lg: 64px;
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-lighter: #a5b4fc;
    --secondary: #ec4899;
    --secondary-dark: #db2777;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #cbd5e1;
    --white: #ffffff;
    --bg-dark: #0a0e27;
    --bg-card: #1a1f3a;
    --bg-card-light: #252b47;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-primary-hover: linear-gradient(135deg, #818cf8 0%, #a78bfa 50%, #f472b6 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    --shadow-glow-hover: 0 0 30px rgba(99, 102, 241, 0.5);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
    scrollbar-gutter: stable;
    overflow-y: scroll;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

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

.nav-link {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-light);
}

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

.nav-collapse {
    display: contents;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    backdrop-filter: blur(4px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-shrink: 0;
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.open .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lang-form {
    display: inline-flex;
}

.lang-select {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-select option {
    background: var(--dark);
    color: var(--white);
}

.language-switcher {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 8px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--gray-light);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

.brand-text {
    text-decoration: none;
    color: var(--white);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
}

.brand-icon {
    font-size: 32px;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
    }
    50% { 
        transform: scale(1.15);
        filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.8));
    }
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 11px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow-hover);
    background: var(--gradient-primary-hover);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: #374151;
    padding: 12px 28px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #f9fafb;
    color: #111827;
    border-color: #9ca3af;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    padding: 11px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    width: 100%;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: calc(var(--navbar-height) + 32px) 0 48px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    border: 1px solid var(--secondary);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    animation: slideInLeft 1s ease-out;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

body[dir="rtl"] .hero-badge {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(99, 102, 241, 0.5));
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 18px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--gray-light);
    animation: fadeInUp 1s ease-out 1s both;
    margin-top: 16px;
}

.hero-trust p {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-visual {
    animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dashboard-preview {
    position: relative;
    perspective: 1000px;
}

.preview-window {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-xl), 0 0 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.preview-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.preview-window:hover::before {
    left: 100%;
}

.preview-window:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(99, 102, 241, 0.4);
    border-color: var(--primary-light);
}

.preview-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-card {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-light);
}

.features-section {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(26, 31, 58, 0.5) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.feature-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out both;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray-light);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.how-it-works {
    padding: 40px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease-out both;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 700;
}

.step-content p {
    color: var(--gray-light);
    font-size: 14px;
}

.no-setup-banner {
    background: var(--gradient-primary);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.detailed-features {
    padding: 50px 0;
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.5) 0%, var(--bg-dark) 100%);
}

.feature-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.category-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-light);
}

.category-card ul {
    list-style: none;
}

.category-card li {
    padding: 10px 0;
    color: var(--gray-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-card li:last-child {
    border-bottom: none;
}

.pricing-preview {
    padding: var(--section-padding-y) 0;
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.5) 0%, var(--bg-dark) 100%);
}

.pricing-preview .section-title {
    margin-bottom: 24px;
}

.price-card-main {
    max-width: 480px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(99, 102, 241, 0.15);
}

.price-card-main h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--white);
}

.price-big {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.price-big .currency {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-big .period {
    font-size: 18px;
    color: var(--gray-light);
    font-weight: 600;
}

.price-features {
    list-style: none;
    margin-bottom: 24px;
}

.price-features li {
    padding: 10px 0;
    color: var(--gray-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-features li:last-child {
    border-bottom: none;
}

.landing-section {
    padding: var(--section-padding-y) 0;
}

.landing-section--lg {
    padding: var(--section-padding-y-lg) 0;
}

.landing-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-content {
    max-width: 800px;
}

.pricing-section {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(26, 31, 58, 0.8) 100%);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    padding: 32px;
    border-radius: 24px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl), var(--shadow-glow), 0 0 0 1px rgba(99, 102, 241, 0.1);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.pricing-title {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 20px;
    color: var(--gray-light);
}

.pricing-trial {
    text-align: center;
    margin-bottom: 20px;
}

.trial-badge {
    display: inline-block;
    background: rgba(236, 72, 153, 0.2);
    border: 1px solid var(--secondary);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--gray-light);
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray-light);
    margin-top: 15px;
}

.target-audience {
    padding: 40px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.audience-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.audience-icon {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.audience-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
}

.audience-card p {
    color: var(--gray-light);
    font-size: 13px;
}

.why-choose {
    padding: 40px 0;
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.5) 0%, var(--bg-dark) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.benefit-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 700;
}

.benefit-item p {
    color: var(--gray-light);
    font-size: 14px;
}

.faq-section {
    padding: 40px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(99, 102, 241, 0.3);
    transform: translateX(-5px);
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-light);
}

.faq-item p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.6;
}

.trust-section {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(26, 31, 58, 0.8) 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.trust-item p {
    color: var(--gray-light);
    font-size: 15px;
}

.subscribe-section {
    padding: 40px 0;
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.5) 0%, var(--bg-dark) 100%);
}

.subscribe-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.subscribe-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.subscribe-header {
    text-align: center;
    margin-bottom: 24px;
}

.subscribe-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 800;
}

.subscribe-header p {
    color: var(--gray-light);
    font-size: 16px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), var(--shadow-md);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input[type="color"] {
    height: 50px;
    cursor: pointer;
}

.form-group small {
    font-size: 12px;
    color: var(--gray);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 5px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary-light);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray-light);
    margin-top: 10px;
}

.final-cta {
    padding: 50px 0;
    text-align: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url("#grid#grid")"/></svg>');
    opacity: 0.3;
}

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

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-highlight {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.9;
}

.footer {
    background: var(--dark);
    padding: var(--section-padding-y-lg) 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-message {
    font-size: 16px;
    color: var(--gray-light);
    font-style: italic;
}

.footer-section {
    min-width: 140px;
}

.footer-section h3,
.footer-section h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-section p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--navbar-height) + 24px) 0 32px;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }
    
    .page-hero {
        padding: calc(var(--navbar-height) + 24px) 0 32px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta a {
        width: 100%;
        text-align: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
    }

    .features-section,
    .how-it-works,
    .target-audience,
    .why-choose,
    .faq-section,
    .subscribe-section,
    .landing-section,
    .landing-section--lg,
    .pricing-preview {
        padding: 24px 0;
    }

    .features-grid,
    .feature-categories,
    .audience-grid,
    .benefits-grid,
    .trust-grid,
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .pricing-card,
    .subscribe-card,
    .price-card-main {
        padding: 24px 20px;
    }

    .price-amount {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-section {
        min-width: auto;
    }

    .footer-links {
        justify-content: center;
        gap: 12px;
    }

    .container {
        padding: 0 14px;
    }
    
    
    .page-hero h1 {
        font-size: 24px;
    }

    .page-hero p {
        font-size: 14px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-collapse {
        display: flex;
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 0 24px;
        z-index: 999;
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        max-height: calc(100vh - var(--navbar-height));
        overflow-y: auto;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .nav-collapse.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-overlay.open {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 2px;
        width: 100%;
        padding: 8px 12px;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
        display: block;
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.06);
        color: var(--primary-light);
    }

    .nav-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 4px;
    }

    .nav-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .lang-form {
        width: 100%;
    }

    .lang-select {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }

    .highlight-item {
        font-size: 11px;
        padding: 5px 10px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 10px 18px;
        font-size: 14px;
    }

    .hero {
        padding: calc(var(--navbar-height) + 20px) 0 24px;
    }
    
    .features-section,
    .how-it-works,
    .target-audience,
    .why-choose,
    .faq-section,
    .subscribe-section,
    .landing-section,
    .landing-section--lg,
    .pricing-preview {
        padding: 20px 0;
    }
    
    .page-hero {
        padding: calc(var(--navbar-height) + 20px) 0 24px;
    }
    
    .page-hero h1 {
        font-size: 20px;
    }
    
    .hero-badge {
        padding: 5px 12px;
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .hero-highlights {
        gap: 6px;
        margin-bottom: 14px;
    }
    
    .hero-trust {
        gap: 8px;
        margin-top: 12px;
        font-size: 11px;
    }
}

.section-cta {
    text-align: center;
    margin-top: 24px;
}

.page-hero {
    padding: calc(var(--navbar-height) + 32px) 0 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.page-hero p {
    font-size: 18px;
    color: var(--gray-light);
    margin: 0;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 20px;
    color: var(--gray-light);
}

.about-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.content-section p {
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.feature-item {
    background: var(--bg-card);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-item p {
    color: var(--gray-light);
    font-size: 16px;
}

.story-list {
    list-style: none;
    margin: 20px 0;
    padding-right: 20px;
}

.story-list li {
    padding: 10px 0;
    color: var(--gray-light);
    font-size: 17px;
    position: relative;
}

.story-list li::before {
    content: '✓';
    position: absolute;
    right: -20px;
    color: var(--primary-light);
    font-weight: 700;
}

.cta-section {
    text-align: center;
    padding: 40px 0;
    background: var(--bg-card);
    border-radius: 12px;
    margin-top: 24px;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.features-detailed {
    padding: 80px 0;
}

.feature-section {
    margin-bottom: 80px;
}

.feature-header {
    text-align: center;
    margin-bottom: 50px;
}

.feature-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.feature-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-light);
}

.feature-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.feature-detail-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.feature-detail-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-light);
}

.feature-detail-card ul {
    list-style: none;
}

.feature-detail-card li {
    padding: 8px 0;
    color: var(--gray-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-detail-card li:last-child {
    border-bottom: none;
}

.cta-section-features {
    padding: 80px 0;
    text-align: center;
    background: var(--gradient-primary);
}

.cta-section-features h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section-features p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.pricing-page {
    padding: 80px 0;
}

.pricing-card-large {
    max-width: 900px;
    margin: 0 auto 80px;
    background: var(--bg-card);
    padding: 32px;
    border-radius: 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    position: relative;
}

.pricing-title-large {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
}

.pricing-price-large {
    text-align: center;
    margin-bottom: 20px;
}

.price-amount-large {
    font-size: 72px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period-large {
    font-size: 24px;
    color: var(--gray-light);
}

.pricing-trial-large {
    text-align: center;
    margin-bottom: 20px;
}

.trial-badge-large {
    display: inline-block;
    background: rgba(236, 72, 153, 0.2);
    border: 1px solid var(--secondary);
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
}

.pricing-description {
    text-align: center;
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 24px;
}

.pricing-features-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 24px;
}

.pricing-feature-category h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-light);
}

.pricing-feature-category ul {
    list-style: none;
}

.pricing-feature-category li {
    padding: 10px 0;
    color: var(--gray-light);
    font-size: 16px;
}

.pricing-cta-section {
    text-align: center;
}

.pricing-note-large {
    text-align: center;
    font-size: 14px;
    color: var(--gray-light);
    margin-top: 15px;
}

.pricing-comparison {
    margin-bottom: 80px;
}

.pricing-comparison h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 800;
}

.comparison-table {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: rgba(99, 102, 241, 0.1);
    font-weight: 700;
}

.comparison-cell {
    color: var(--gray-light);
    font-size: 16px;
}

.comparison-cell.highlight {
    color: var(--primary-light);
    font-weight: 700;
}

.pricing-faq {
    margin-top: 80px;
}

.pricing-faq h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 800;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.how-it-works-detailed {
    padding: 80px 0;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.timeline-content {
    flex: 1;
}

.timeline-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--primary-light);
}

.timeline-content p {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.timeline-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--gray-light);
}

.timeline-feature span {
    color: var(--primary-light);
    font-weight: 700;
}

.what-happens-next {
    margin-bottom: 80px;
}

.what-happens-next h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 800;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.next-step-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.next-step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.next-step-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.next-step-card p {
    color: var(--gray-light);
    font-size: 15px;
}

.no-technical-skills {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-skills-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-light);
}

.no-skills-content p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.no-skills-content ul {
    list-style: none;
    margin-top: 20px;
}

.no-skills-content li {
    padding: 10px 0;
    color: var(--gray-light);
    font-size: 17px;
}

.time-comparison {
    margin-bottom: 80px;
}

.time-comparison h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 800;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.comparison-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.comparison-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.time-badge {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.time-badge.medium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.time-badge.long {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.comparison-card p {
    color: var(--gray-light);
    font-size: 15px;
}

.cta-section-works {
    padding: 80px 0;
    text-align: center;
    background: var(--gradient-primary);
}

.cta-section-works h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section-works p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.quick-overview {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(26, 31, 58, 0.5) 100%);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.overview-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(99, 102, 241, 0.4);
}

.overview-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.overview-card:hover .overview-icon {
    transform: scale(1.1) rotate(5deg);
}

.overview-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-light);
}

.overview-card p {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.overview-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.1);
}

.overview-link:hover {
    transform: translateX(-8px);
    color: var(--white);
    background: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-page {
    padding: 80px 0;
}

.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-light);
}

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

.faq-item-expanded {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item-expanded:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.2);
}

.faq-item-expanded h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-light);
}

.faq-item-expanded p {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.8;
}

.faq-cta {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-card);
    border-radius: 12px;
    margin-top: 60px;
}

.faq-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 80px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--primary-light);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 24px;
}

.contact-method {
    background: var(--bg-card);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.contact-method h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-method p {
    color: var(--gray-light);
    font-size: 15px;
    margin-bottom: 5px;
}

.contact-social h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    background: var(--bg-card);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary-light);
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-faq {
    margin-top: 80px;
}

.contact-faq h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 800;
}

.quick-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.quick-question {
    background: var(--bg-card);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-question h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary-light);
}

.quick-question p {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.8;
}

.quick-question a {
    color: var(--primary-light);
    text-decoration: none;
}

.quick-question a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

.testing-links-section {
    padding: calc(var(--navbar-height) + 32px) 0 32px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(26, 31, 58, 0.5) 100%);
}

.testing-links-section .section-title {
    text-align: center;
    margin-bottom: 24px;
}

.testing-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.testing-link-card {
    display: block;
    padding: 16px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.testing-link-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(99, 102, 241, 0.3);
}

