    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        color: #333;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

    /* ====== Header ====== */
    .header {
        background: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
    }

    .logo img {
        width: 180px;
    }

    .nav a {
        margin-left: 2rem;
        font-weight: 500;
        color: #555;
    }

    .nav a:hover {
        color: #4F46E5;
    }

    .menu-toggle {
        display: none;
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* ====== Hero ====== */
    .hero {
        position: relative;
        height: 80vh;
        overflow: hidden;
        /* Чтобы видео не выходило за границы */
    }

    .hero__video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Аналогично background-size: cover */
        z-index: -1;
        /* Чтобы видео было под контентом */
    }

    .hero__video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        /* Затемнение для лучшей читаемости текста */
        z-index: 0;
    }

    .hero__content {
        position: relative;
        /* Чтобы контент был поверх видео */
        z-index: 1;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .hero__content {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        color: #fff;
    }

    .hero__content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero__content p {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background: #4F46E5;
        color: #fff;
        border-radius: 0.5rem;
        font-weight: 600;
    }

    .btn:hover {
        background: #4338CA;
    }

    .btn--secondary {
        background: #fff;
        color: #4F46E5;
        border: 2px solid #4F46E5;
    }

    .btn--secondary:hover {
        background: #f3f4f6;
    }

    /* ====== Sections ====== */
    section {
        padding: 4rem 0;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .des {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .services__grid,
    .pricing__grid {
        display: flex;
        gap: 2rem;
        justify-content: center
    }

    .services {
        padding: 64px 0 0 0;
    }

    #pricing {
        background-color: #4F46E5;
        border-radius: 20px;
    }

    #pricing h2 {
        color: #fff;
    }

    .descript {
        text-align: left;
        margin-bottom: 20px;
    }

    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .card {
        background: #fff;
        border-radius: 0.75rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        width: 650px;
    }

    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .card h3 {
        margin: 1rem 0;
        font-size: 1.5rem;
    }

    .card p {
        padding: 0 2rem 2rem;
        color: #555;
    }

    .steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
    }

    .step__num {
        font-size: 2rem;
        color: #4F46E5;
        margin-bottom: 0.5rem;
    }

    .plan {
        background: #fff;
        border-radius: 0.75rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 2rem;
    }

    .plan h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .plan ul li {
        margin-bottom: 0.5rem;
        color: #555;
    }

    #how-it-works h2 {
        margin-bottom: 2rem;
    }

    /* ====== Contact ====== */
    .contact__form {
        display: grid;
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact__form input,
    .contact__form textarea {
        padding: 0.75rem;
        border: 1px solid #ccc;
        border-radius: 0.5rem;
    }

    /* ====== Footer ====== */
    .footer {
        background: #111827;
        color: #9CA3AF;
        padding: 2rem 0;
    }

    .footer__inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .footer__brand h4 {
        color: #fff;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .footer__links a {
        margin-left: 1rem;
        color: #9CA3AF;
    }

    .footer__links a:hover {
        color: #fff;
    }

    /* ====== Responsive ====== */

    @media (max-width: 1000px) {
        .pricing__grid {
            padding: 0 30px
        }

    }

    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
        }

        .nav {
            display: none;
            flex-direction: column;
            background: #fff;
            position: absolute;
            top: 100%;
            right: 0;
            width: 200px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .nav.nav--open {
            display: flex;
        }

        .nav a {
            margin: 1rem;
        }

        .pricing__grid {
            flex-direction: column
        }

        .services__grid {
            flex-direction: column;
        }
.footer__inner {
        justify-content: center
}
.footer__brand .logo {
    text-align: center;
}
    }