﻿.services {
    background: #090909;
    padding: 120px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

    .section-title span {
        color: #3E6BFF;
        letter-spacing: 4px;
        font-weight: 600;
    }

    .section-title h2 {
        font-size: 56px;
        color: white;
        margin: 20px 0;
    }

    .section-title p {
        color: #A9A7A0;
        max-width: 700px;
        margin: auto;
    }

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.reverse .service-video {
    order: 2;
}

.reverse .service-content {
    order: 1;
}

.service-video {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}

    .service-video video {
        width: 100%;
        display: block;
    }

.service-content h3 {
    font-size: 42px;
    color: white;
    margin-bottom: 25px;
}

    .service-content h3::after {
        content: "";
        width: 80px;
        height: 4px;
        display: block;
        margin-top: 15px;
        background: var(--theme-gradient);
    }

.service-content p {
    color: #A9A7A0;
    line-height: 1.8;
}

.service-content ul {
    margin-top: 30px;
    padding: 0;
}

.service-content li {
    list-style: none;
    color: white;
    margin-bottom: 18px;
}

    .service-content li::before {
        content: "✓";
        color: #3E6BFF;
        margin-right: 12px;
    }

.service-row:hover .service-video {
    box-shadow: 0 0 40px rgba(62,107,255,.25);
}

@media(max-width:900px) {

    .service-row {
        grid-template-columns: 1fr;
    }

    .reverse .service-video,
    .reverse .service-content {
        order: unset;
    }
}
