:root {
    --primary-color: #0056fd;
    --text-dark: #0a0f1b;
    --text-grey: #4a5568;
    --background-light: #f2f6ff;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-light);
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 5rem;
}

.roadmap {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 5rem;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 4px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary-color),
        var(--primary-color) 10px,
        transparent 10px,
        transparent 20px
    );
    border-radius: 2rem;
}

.roadmap-step {
    background-color: var(--white);
    border-radius: 1.5rem;
    padding: 2rem 2rem 2rem 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.roadmap-step::before {
    content: attr(data-step);
    position: absolute;
    left: -10px;
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.roadmap-step p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin: 0;
}

.roadmap-step a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    background-color: rgba(0, 86, 253, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.roadmap-step a:hover {
    background-color: rgba(0, 86, 253, 0.2);
}

.section-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 1.4rem;
    text-decoration: none;
    font-size: 1.5rem;
    transition: background 0.3s;
    margin-top: 3rem;
    margin-bottom: 8rem;
}

.section-button:hover {
    background: #004ad9;
}

/* Градиенты на фоне */
.blur-ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
}

.ball-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 253, 0.15), transparent);
    top: -200px;
    left: -200px;
}

.ball-2 {
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 253, 0.15), transparent);
    bottom: -200px;
    right: -200px;
}

.video-container {
    margin: 20px 0;
    text-align: center;
}

video, iframe {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .roadmap {
        padding-left: 1rem;
    }

    .roadmap::before {
        left: 15px;
    }

    .roadmap-step {
        padding: 1.5rem 1.5rem 1.5rem 3rem;
        margin-bottom: 2rem;
    }

    .roadmap-step::before {
        left: -5px;
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .roadmap-step p {
        font-size: 1rem;
    }

    .section-button {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        margin-top: 2rem;
        margin-bottom: 4rem;
    }
}