:root {
    color-scheme: light dark;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
}

body {
    margin: 0;
    background: #f4f4f8;
    color: #111;
}

.container {
    width: min(1200px, 90vw);
    margin: 0 auto;
    padding: 1.5rem 0;
}

.site-header,
.site-footer {
    background: #101935;
    color: #fff;
}

.site-header a,
.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-header nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.site-header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.hero {
    padding: 2rem 0;
}

.hero-kicker {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
    color: #5a6dff;
    font-weight: 700;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    background: #0f62fe;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.btn.secondary {
    background: #fff;
    color: #0f62fe;
    border: 1px solid #0f62fe;
}

.features {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding-bottom: 2rem;
}

.features article {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-bottom: 2rem;
}

.gallery article {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery div {
    padding: 1rem 1.25rem 1.5rem;
}

.cta {
    background: #101935;
    color: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.cta ul {
    padding-left: 1.2rem;
    margin: 1rem 0;
}

.cta li {
    margin-bottom: 0.5rem;
}

.pricing {
    margin: 2rem 0;
}

.pricing-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin: 1.5rem 0;
}

.pricing-grid article {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pricing .price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    color: #0f62fe;
}

.pricing ul {
    padding-left: 1.2rem;
    margin: 0;
}

.pricing-note {
    font-size: 0.9rem;
    color: #666;
}

.contacts {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.certificate {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.certificate img {
    width: 260px;
    border-radius: 10px;
    object-fit: cover;
}

.certificate-info {
    flex: 1;
}

@media (max-width: 768px) {
    .certificate {
        flex-direction: column;
        text-align: center;
    }

    .certificate img {
        width: 75%;
    }
}
.logo {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    gap: 0.75rem;
}

.logo a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5a6dff, #2ad1ff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.logo-text small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: rgba(255, 255, 255, 0.8);
}
.gallery article img {
    animation: pan 20s linear infinite;
}

@keyframes pan {
    0% {
        transform: scale(1.05) translateX(0);
    }
    50% {
        transform: scale(1.05) translateX(-5%);
    }
    100% {
        transform: scale(1.05) translateX(0);
    }
}
