/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

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

/* Шапка */
.header {
    background: #1e40af;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: white;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Герой - один цвет фона */
.hero {
    padding: 160px 0 80px;
    background: #eff6ff;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1e40af;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Секции */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1e293b;
}

/* Особенности - без смайликов */
.approach-section {
    background: #f8fafc;
}

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

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.highlight-card {
    border-color: #10b981;
    background: #f0fdf4;
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #64748b;
    font-size: 1rem;
}

/* Стоимость */
.pricing-section {
    background: white;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.price-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.3s;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.price-card.popular {
    border-color: #2563eb;
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px dashed #e2e8f0;
}

.price-header h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2563eb;
    margin: 10px 0;
}

.price-subtitle {
    color: #64748b;
    font-size: 0.9rem;
}

.price-features {
    list-style: none;
    margin-top: 20px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0;
    color: #4b5563;
    font-size: 0.95rem;
}

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

.highlight-feature {
    color: #059669 !important;
    font-weight: 600;
    margin-top: 10px !important;
}

/* Контакты - без картинок */
.contact-section {
    background: #f8fafc;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-info {
    margin: 30px 0;
}

.contact-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.contact-item h3 {
    color: #1e293b;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-note {
    background: #eff6ff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #2563eb;
    margin-top: 30px;
    text-align: center;
}

.contact-note p {
    color: #1e40af;
    font-size: 1rem;
    margin: 0;
}

/* Футер */
.footer {
    background: #1e293b;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.footer-subtitle {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-phone {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer-hours {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Адаптивность - три карточки всегда в ряд или друг под другом */
@media (max-width: 1200px) {
    .pricing-cards {
        justify-content: center;
    }
    
    .price-card {
        min-width: 250px;
    }
}

@media (max-width: 992px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo {
        justify-content: center;
    }
    
    .nav-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        padding: 25px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .price-tag {
        font-size: 2.2rem;
    }
    
    .price-card {
        padding: 20px;
        min-width: 100%;
    }
}