/* General Styles */
:root {
    --primary-color: #0066cc;
    --accent-color: #ff3333;
    --dark-color: #333333;
    --light-color: #f5f9ff;
    --text-color: #2c2c2c;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
}

.brand-name .accent {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f9ff 0%, #e1f0ff 100%);
    padding: 0;
    display: flex;
    align-items: center;
}

.hero-content {
    padding-top: 80px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero h1 .accent {
    color: var(--accent-color);
}

.hero-features {
    margin: 2rem 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 18px;
    min-height: 28px;
}

.hero-feature i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 20px;
}

.typing-text {
    display: inline-block;
    padding-right: 5px;
    min-height: 28px;
}

.typing-text.typing {
    border-right: 2px solid var(--accent-color);
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--accent-color) }
}

.price-tag {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-tag i {
    color: var(--accent-color);
    margin-right: 10px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.hero-bubble {
    background: rgba(51, 51, 51, 0.9);
    color: white;
    padding: 1.8rem;
    border-radius: 12px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    width: 500px;
    backdrop-filter: blur(5px);
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

.btn-telegram {
    background-color: var(--accent-color) !important;
    color: white !important;
    border: none;
    padding: 1rem 2rem;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-telegram:hover {
    background-color: var(--accent-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

/* Features Section */
.feature-box {
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-bubble {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        text-align: left;
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-telegram {
        width: 100%;
        text-align: center;
    }
    
    .feature-box {
        margin-bottom: 2rem;
    }
} 