* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI'; direction: rtl; background: #fff; }

.navbar { background: white; padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.navbar-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 24px; font-weight: bold; color: #667eea; }
.nav-menu { list-style: none; display: flex; gap: 30px; }
.nav-menu a { text-decoration: none; color: #333; }
.nav-auth { display: flex; gap: 10px; }
.btn-login { border: 2px solid #667eea; color: #667eea; padding: 10px 20px; border-radius: 5px; text-decoration: none; }
.btn-signup { background: linear-gradient(135deg, #667eea, #764ba2); color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; }

.hero { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.hero-title { font-size: 36px; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(135deg, #667eea, #764ba2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { color: #666; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 20px; margin-bottom: 30px; }
.btn-primary-large { background: linear-gradient(135deg, #667eea, #764ba2); color: white; padding: 15px 30px; border-radius: 8px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.features, .pricing { padding: 80px 20px; background: #f7fafc; }

h2 { font-size: 32px; text-align: center; margin-bottom: 10px; }

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

.feature-card { background: white; padding: 30px; border-radius: 10px; border: 1px solid #e2e8f0; text-align: center; }
.feature-icon { font-size: 40px; color: #667eea; margin-bottom: 20px; }

.pricing-card { background: white; padding: 30px; border-radius: 10px; border: 2px solid #e2e8f0; text-align: center; }
.pricing-card.featured { border-color: #667eea; }
.price { font-size: 32px; font-weight: bold; color: #667eea; margin: 20px 0; }
.features-list { list-style: none; text-align: right; margin: 20px 0; }
.features-list li { padding: 10px 0; border-bottom: 1px solid #e2e8f0; }
.btn-plan { display: inline-block; padding: 12px 30px; border: 2px solid #667eea; color: #667eea; text-decoration: none; border-radius: 8px; }
.btn-plan.btn-primary { background: #667eea; color: white; border: none; }

.footer { background: #2d3748; color: white; padding: 40px 20px; text-align: center; }

@media (max-width: 768px) { .nav-menu { display: none; } h2 { font-size: 24px; } }
