/* ========== ОБЩИЕ СТИЛИ ДЛЯ ВСЕХ СЕРВИСОВ QRWAY ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #e6edf4;
    color: #0b1a33;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Типография */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 0.75rem;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #1a4cff;
    color: white;
    box-shadow: 0 8px 20px -8px rgba(26, 76, 255, 0.5);
}

.btn-primary:hover {
    background: #0036d9;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -8px rgba(26, 76, 255, 0.6);
}

.btn-secondary {
    background: white;
    color: #1a4cff;
    border: 1px solid rgba(26, 76, 255, 0.2);
}

.btn-secondary:hover {
    background: #f5f8ff;
    border-color: #1a4cff;
}

/* Подвал (footer) */
.footer {
    background: #0b1a33;
    color: white;
    padding: 60px 0 30px;
    border-radius: 48px 48px 0 0;
}

.footer a {
    color: #b0c6e0;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

/* Адаптивность */
@media (max-width: 900px) {
    .container {
        padding: 0 16px;
    }
}
/* ========== СТИЛИ ДЛЯ ПОДВАЛА (FOOTER) ========== */
.footer {
    background: #0b1a33;
    color: white;
    padding: 60px 0 30px;
    border-radius: 48px 48px 0 0;
    margin-top: 60px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer a {
    color: #b0c6e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: white;
}

.footer h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer p {
    margin-bottom: 8px;
    color: #b0c6e0;
}

.footer hr {
    border-color: #253c5c;
    margin: 20px 0;
}

.footer-logo p {
    margin-top: 12px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    .footer .container > div:first-child {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer h4 {
        margin-bottom: 12px;
    }
}
/* ========== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ПОДВАЛА ========== */
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer .container > div:first-child {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer .footer-logo p {
    margin-top: 12px;
    color: #b0c6e0;
}

.footer h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer p {
    margin-bottom: 8px;
    color: #b0c6e0;
}

.footer a {
    color: #b0c6e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: white;
}

.footer hr {
    border-color: #253c5c;
    margin: 20px 0;
}

.footer .footer-logo img {
    height: 100px;
    width: auto;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    .footer .container > div:first-child {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer h4 {
        margin-bottom: 12px;
    }
}
.description {
    background: transparent;
    padding: 20px 0 20px 0;
    margin-bottom: 28px;
    color: #334155;
    font-size: 15px;
    line-height: 1.5;
}