*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f4f4f7; /* светлый фон */
    color:#1a1a1a; /* тёмный текст */
    overflow-x:hidden;
}

section{
    padding:100px 10%;
    text-align:center;
}

h1,h2{
    font-weight:700;
}

h2{
    font-size:40px;
    margin-bottom:40px;
}

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero video{
    position:absolute;
    top:50%;
    left:50%;
    min-width:100%;
    min-height:100%;
    transform:translate(-50%,-50%);
    object-fit:cover;
    z-index:-1;
}

.overlay{
    background:rgba(255,255,255,0.6); /* светлая полупрозрачная подложка */
    padding:40px;
    animation:fadeIn 1.5s ease forwards;
}

@keyframes fadeIn{
    from{opacity:0;transform:translateY(30px)}
    to{opacity:1;transform:translateY(0)}
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
    color:#1a1a1a;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:15px 40px;
    background:#ff0055;
    color:#fff;
    text-decoration:none;
    transition:.3s;
    border-radius:5px;
}

.btn:hover{
    background:#fff;
    color:#ff0055;
    border:1px solid #ff0055;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:10px;
}

.gallery-item img{
    width:100%;
    height:400px;
    object-fit:cover;
    transition:.4s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

.gallery-item span{
    position:absolute;
    bottom:10px;
    left:10px;
    background:rgba(255,255,255,0.7);
    color:#1a1a1a;
    padding:8px 15px;
    font-size:14px;
    border-radius:5px;
}

.contact .phone{
    font-size:24px;
    margin:20px 0;
    color:#1a1a1a;
}

footer{
    padding:40px;
    text-align:center;
    background:#e0e0e5;
    color:#555;
}

/* Новые блоки */
.company, .training, .stats, .income{
    background:#ffffff; /* светлые блоки */
    color:#1a1a1a;
    border-radius:10px;
    margin-bottom:40px;
    padding:60px 10%;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.training-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:40px;
}

.training-item{
    background:#f0f0f5;
    padding:30px;
    transition:.3s;
    border-radius:10px;
}

.training-item:hover{
    background:#ffccd5;
    transform:translateY(-5px);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    margin-top:50px;
}

.stat{
    background:#f0f0f5;
    padding:40px 20px;
    transition:.3s;
    border-radius:10px;
}

.stat h3{
    font-size:50px;
    color:#ff0055;
    margin-bottom:15px;
}

.stat:hover{
    transform:scale(1.05);
    background:#ffe0eb;
}

.income p{
    margin:20px 0;
    line-height:1.6;
}

/* Анимация при скролле */
section{
    opacity:0;
    transform:translateY(50px);
    transition: all 0.8s ease;
}

@media(max-width:768px){
    .hero h1{font-size:40px}
    h2{font-size:28px}
    .gallery-item img{height:250px}
}