/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,46): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(35,46): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(98,26): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(102,22): run-time error CSS1039: Token not allowed after unary operator: '-dark'
 */
:root {
    --primary: #6c63ff;
    --primary-dark: #564fd0;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --purpl: #3a3a8d;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--dark), #16213e);
}

.bg-purpl {
    background-color: #3a3a8d;
}
/* Навигация */
.navbar {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    margin: 0 10px;
    font-weight: 500;
}
/* Герой */
.hero {
    background: linear-gradient(135deg, var(--dark), #16213e);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Для навигации */
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
        animation: pulse 15s infinite alternate;
    }

@keyframes pulse {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}
/* Карточки услуг */
.service-card {
    border: none;
    border-radius: 15px;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(108, 99, 255, 0.2);
    }
/* Процесс работы */
.process-step {
    position: relative;
    padding-left: 30px;
}

    .process-step::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: var(--primary);
    }
/* Футер */
footer {
    background: var(--dark);
    color: white;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-links a:hover {
        color: white;
    }

