@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;900&family=Open+Sans:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #1A1A2E;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* ===== HEADER ===== */

header {
    background: #16162A;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #FF6B35;
}

/* ===== NAVIGATION ===== */

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}

nav a:hover {
    color: #FF6B35;
}

/* ===== CONTENT ===== */

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #FF6B35;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #E85D26;
}

/* ===== FORM ===== */

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== FOOTER ===== */

footer {
    background: #0f0f20;
    padding: 20px;
    text-align: center;
}

/* ============================= */
/* ===== ADAPTIVE DESIGN ===== */
/* ============================= */

/* Планшеты */
@media (max-width: 992px) {
    nav ul {
        gap: 15px;
    }
}

/* Смартфоны */
@media (max-width: 768px) {

    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    .container {
        padding: 25px 0;
    }
}

/* Маленькие телефоны */
@media (max-width: 480px) {

    body {
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
/* ===== PRICING ===== */

.pricing-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.price-card {
    background: #16162A;
    padding: 30px;
    width: 32%;
    border-radius: 8px;
    text-align: center;
}

.price-card h2 {
    color: #FF6B35;
}

.price {
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0;
}

/* Адаптивность */

@media (max-width: 992px) {
    .price-card {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
    }

    .price-card {
        width: 100%;
    }
}