/* style.css */
/* Основные стили и сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a365d;
    text-decoration: none;
}

.logo-icon {
    color: #2d8cff;
    margin-right: 5px;
}

.logo-highlight {
    color: #2d8cff;
}
.logo-highlight2 {
    color:#e6f0ff ;
	padding-bottom: 20px
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #2d8cff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #2d8cff;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.current-lang {
    font-weight: 600;
    color: #2d8cff;
}

.lang-divider {
    color: #ccc;
}

.lang-option {
    color: #718096;
    text-decoration: none;
}

.lang-option:hover {
    color: #2d8cff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #4a5568;
    cursor: pointer;
}

/* Главный баннер */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d8cff 100%);
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,40 50,50 T100,50" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/><path d="M0,70 Q25,60 50,70 T100,70" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 10px 20px;
    font-size: 16px;
    font-weight: 600;
}

.hero-badge i {
    margin-right: 8px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #ff6b35;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background-color: #ff8535;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.hero-cta {
    margin-top: 30px;
}

/* Секции */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #2d8cff;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* О нас */
.about {
    background-color: white;
}

/* Принципы */
.principles {
    background-color: #f1f7ff;
}
.principles-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.principles-text {
    flex: 1;
}

.principles-text .section-title {
    text-align: left;
}

.principles-text .section-title::after {
    left: 0;
    transform: none;
}

.principles-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-top: 30px;
}

.principles-image {
    flex: 1;
}

.image-placeholder {
    background: linear-gradient(135deg, #2d8cff 0%, #1a365d 100%);
    border-radius: 15px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 10px 30px rgba(45, 140, 255, 0.2);
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.image-placeholder span {
    font-size: 20px;
    font-weight: 600;
}

/* Партнерка */
.principles2 {
    background: linear-gradient(135deg, #2d8cff 0%, #1a365d 100%);
}
.principles-content2 {
    display: flex;
    align-items: center;
    gap: 60px;
}

.principles-text2 {
    flex: 1;
}

.principles-text2 .section-title2 {
    text-align: left;
	color:#FFFFFF;
}

.principles-text2 .section-title2::after {
    left: 0;
    transform: none;
}

.principles-text2 p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-top: 30px;
}

.principles-image2 {
    flex: 1;
}

.image-placeholder2 {
    background: linear-gradient(135deg, #2d8cff 0%, #1a365d 100%);
    border-radius: 15px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 10px 30px rgba(45, 140, 255, 0.2);
}

.image-placeholder2 i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.image-placeholder2 span {
    font-size: 20px;
    font-weight: 600;
}

/* Преимущества */
.advantages {
    background-color: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #2d8cff;
}

.advantage-icon {
    background-color: #e6f0ff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advantage-icon i {
    font-size: 30px;
    color: #2d8cff;
}

.advantage-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
}

.advantage-text {
    color: #4a5568;
    line-height: 1.7;
}

/* Призыв к действию */
.cta-section {
    background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: #ff6b35;
    margin-top: 20px;
}

/* Футер */
.footer {
    background-color: #1a202c;
    color: #a0aec0;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo .logo {
    margin-bottom: 20px;
    font-size: 32px;
    color: white;
}

.footer-tagline {
    font-size: 16px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    min-width: 150px;
}

.footer-heading {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #2d8cff;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: #2d8cff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    text-align: center;
}

.copyright {
    font-size: 14px;
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 2000;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #4a5568;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.mobile-nav-link {
    font-size: 22px;
    font-weight: 600;
    color: #1a365d;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-nav-link:hover {
    color: #2d8cff;
}

.mobile-menu-footer {
    padding: 20px 0;
}

.mobile-cta {
    width: 100%;
    text-align: center;
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles-content {
        flex-direction: column;
    }
    
    .principles-text .section-title {
        text-align: center;
    }
    
    .principles-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .nav, .language-selector {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        display: block;
        margin: 0 auto 10px;
        width: 80%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}