/* Reset և Հիմնական */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.hero {
    background: linear-gradient(135deg, #0066FF 0%, #00B8E6 100%);
    color: white;
    text-align: center;
    padding: 100px 20px 80px;
}

.logo {
    font-size: 56px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.tagline {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.coming-soon {
    background: rgba(255,255,255,0.25);
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

/* Services */
.services {
    padding: 60px 20px;
    background: #fff;
    margin-top: -40px;
    position: relative;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0,102,255,0.2);
    border-color: #0066FF;
}

.service-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: #0066FF;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Features */
.features {
    background: #f8f9fa;
    padding: 80px 20px;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #0066FF;
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: scale(1.05);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature p {
    color: #666;
    font-size: 15px;
}

/* CTA */
.cta {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #666;
}

.benefits {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: left;
}

.benefit {
    padding: 15px 0;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.benefit:last-child {
    border-bottom: none;
}

.value {
    font-size: 24px;
    color: #0066FF;
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    background: #0066FF;
    color: white;
    padding: 20px 60px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,102,255,0.3);
}

.cta-button:hover {
    background: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,102,255,0.4);
}

/* Contact */
.contact {
    background: #f8f9fa;
    padding: 80px 20px;
}

.contact-info {
    margin-top: 40px;
    text-align: center;
}

.contact-item {
    margin: 20px 0;
    font-size: 20px;
}

.contact-item a {
    color: #0066FF;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #0052cc;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #00B8E6;
}

footer p {
    margin-top: 20px;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 40px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .service-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 18px;
    }
    
    .social-links a {
        display: block;
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px 50px;
    }
    
    .logo {
        font-size: 32px;
    }
    
    .coming-soon {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}
