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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Шапка */
.header {
    text-align: center;
    padding: 40px 0;
    background: white;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1e3a8a, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.logo-placeholder {
    display: flex;
    justify-content: center;
}

.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #1e3a8a 0%, #dc2626 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

/* Основной контент */
.content {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.content h2 {
    color: #1e3a8a;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
}

.description {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Карточки особенностей */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
    color: white;
}

.feature-icon.blue {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
}

.feature-icon.red {
    background: linear-gradient(45deg, #dc2626, #ef4444);
}

.feature-icon.white {
    background: linear-gradient(45deg, #64748b, #94a3b8);
    color: #1e293b;
}

.feature-card h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.5;
}

/* Прогресс */
.coming-soon {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
    border-radius: 12px;
    color: white;
    margin: 30px 0;
}

.coming-soon p:first-child {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    max-width: 500px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    margin: 20px auto;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 6px;
    animation: pulse 2s infinite;
}

.progress-text {
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 10px;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Футер */
.footer {
    text-align: center;
    padding: 20px;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 30px;
}

.footer p {
    background: white;
    padding: 15px 30px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .content {
        padding: 20px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .content h2 {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .content {
        padding: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
}