/* ===== ОБНУЛЕНИЕ И БАЗОВЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Основной фон страницы - темный градиент с текстурой */
body {
    background: linear-gradient(135deg, #091725 0%, #01132c 30%, #0b225c 100%),
    url('images/shattered.png');
    background-blend-mode: overlay;
    color: #e6f1ff;
    min-height: 100vh;
    line-height: 1.6;
}

/* Контейнер для контента - центрирование и ограничение ширины */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== ШАПКА САЙТА ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(52, 152, 219, 0.2);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Логотип с изображением и текстом */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 125px;
    height: 125px;
    background: url('images/gotovoeee.png') center/contain no-repeat;
    border-radius: 8px;
}

/* Навигационное меню */
nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: #e6f1ff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav a:hover {
    color: #3498db;
}

/* Подчеркивание при наведении */
nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* ===== ТИПОГРАФИЯ ===== */
h1 { font-size: 2rem; margin: 0; }

/* Заголовки секций с декоративной линией */
h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

/* Синяя линия под заголовками */
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #3498db;
    border-radius: 2px;
}

h3 { font-size: 1.6rem; margin-bottom: 15px; }
h4 { font-size: 1.3rem; margin-bottom: 10px; }

/* Подзаголовки с серым цветом */
.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ГЛАВНЫЙ ЭКРАН ===== */
.hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: #bdc3c7;
}

/* ===== СЕТКА ДЛЯ КАРТОЧЕК ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* ===== КАРТОЧКИ УСЛУГ ===== */
.card {
    background: linear-gradient(145deg, rgba(30, 60, 114, 0.8), rgba(20, 40, 80, 0.9));
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Эффект при наведении - поднятие вверх */
.card:hover {
    transform: translateY(-10px);
    border-color: rgba(52, 152, 219, 0.4);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Синяя полоса сверху при наведении */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;    
    background-color: #3498db;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

/* Выделенная услуга (над сеткой) */
.featured-service .card {
    background: linear-gradient(145deg, rgba(52, 78, 131, 0.85),rgba(17, 47, 107, 0.92));
    border: 1px solid rgba(52, 152, 219, 0.3);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

/* Градиентная полоса для выделенной услуги */
.featured-service .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    opacity: 0.8;
}

/* ===== ТЕГИ ===== */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tags span {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

/* ===== СПИСКИ ===== */
ul {
    list-style: none;
    margin-top: 20px;
}

ul li {
    color: #bdc3c7;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

/* Маркер списка - синяя точка */
ul li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* ===== СЕКЦИЯ ФОРМЫ ===== */
.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: linear-gradient(145deg, rgba(30, 60, 114, 0.8), rgba(20, 40, 80, 0.9));
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Сообщения об успешной отправке */
.success-message {
    background: #10b981;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    display: none;
}

/* Сообщения об ошибке */
.error-message {
    background: #ef4444;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    display: none;
}

/* Отключенные кнопки */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== ЭЛЕМЕНТЫ ФОРМЫ ===== */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
}

/* Поля ввода */
input, select, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 8px;
    color: #e6f1ff;
    font-size: 1rem;
}

/* Фокус на полях */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Чекбокс */
.checkbox {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
    font-size: 0.95rem;
    color: #bdc3c7;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox a {
    color: #3498db;
    text-decoration: none;
}

.checkbox a:hover {
    color: #2ecc71;
    text-decoration: underline;
}

/* ===== КНОПКИ ===== */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Основная кнопка */
button, .btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

button:hover, .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    background-color: #2980b9;
}

/* Зеленая кнопка для демо-версии */
.demo {
    background-color: #2ecc71;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.demo:hover {
    background-color: #27ae60;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

/* ===== ИНФОРМАЦИОННЫЙ БЛОК СПРАВА ОТ ФОРМЫ ===== */
.form-info {
    background: rgba(10, 25, 47, 0.5);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

/* Шаги после отправки заявки */
.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.number {
    background-color: #3498db;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== ПОДВАЛ САЙТА ===== */
footer {
    border-top: 1px solid rgba(52, 152, 219, 0.2);
    padding-top: 50px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo .logo-image {
    width: 60px;
    height: 60px;
}

.contacts h4, .footer-nav h4 {
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #3498db;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(52, 152, 219, 0.1);
    color: #95a5a6;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom p:last-child {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== СТРАНИЦА ДЕМО-ТЕСТА ===== */
.test-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(145deg, rgba(30, 60, 114, 0.8), rgba(20, 40, 80, 0.9));
    border-radius: 15px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.question {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(10, 25, 47, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.option {
    padding: 15px 20px;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 8px;
    color: #e6f1ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option:hover {
    background: rgba(52, 152, 219, 0.2);
}

/* Правильный ответ - зеленый */
.option.correct {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

/* Неправильный ответ - красный */
.option.wrong {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.result {
    display: none;
    padding: 20px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

/* Блок с предложением подписки */
.subscription {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(145deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.2));
    border-radius: 12px;
    border: 1px solid rgba(46, 204, 113, 0.3);
    text-align: center;
}

.subscription h3 {
    color: #2ecc71;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.subscription ul {
    margin: 25px 0;
}

.subscription ul li {
    padding: 10px 0;
    color: #e6f1ff;
    font-size: 1.1rem;
    padding-left: 30px;
    text-align: left;
}

/* Галочка в списке преимуществ */
.subscription ul li::before {
    content: "✓";
    color: #2ecc71;
}

.back {
    display: inline-block;
    margin-top: 30px;
    color: #3498db;
    text-decoration: none;
}

.back:hover {
    text-decoration: underline;
}

/* ===== СТРАНИЦА ПОДПИСКИ ===== */

/* Сетка тарифов */
.plans {
    display: flex;
    gap: 34px;
    justify-content: center;
    margin: 32px 0;
    flex-wrap: wrap;
}

.plan {
    max-width: 398px;
    padding: 20px 30px;
    flex: 1 1 100px;
    background: linear-gradient(145deg, rgba(30, 60, 114, 0.85), rgba(20, 40, 80, 0.9));
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
}

.plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.plan h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #3498db;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #e6f1ff;
    margin: 6px 0;
}

.period {
    color: #bdc3c7;
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.plan ul li {
    color: #d1e0f0;
    margin: 6px 0;
    font-size: 0.93rem;
}

.plan .btn,
.plan .main-btn {
    padding: 11px 18px;
    font-size: 0.98rem;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    margin-top: 12px;
}

/* Выделенный (рекомендуемый) тариф */
.featured-plan {
    border: 2px solid #2ecc71;
    background: linear-gradient(145deg, rgba(25, 55, 100, 0.9), rgba(20, 45, 85, 0.95));
}

/* Бейдж "Рекомендуем" */
.featured-plan::after {
    content: "Рекомендуем";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: white;
    font-size: 0.82rem;
    padding: 4px 14px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Корпоративный тариф */
.corporate-plan {
    background: linear-gradient(145deg, rgba(28, 45, 85, 0.85), rgba(22, 38, 75, 0.9));
    border: 1px solid rgba(142, 124, 180, 0.35);
    border-radius: 16px;
    padding: 30px 28px;
    max-width: 560px;
    margin: 36px auto;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.corporate-plan h4 {
    color: #8e7cb4;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.corporate-plan .subtitle {
    color: #bdc3c7;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.corporate-plan ul {
    max-width: 500px;
    margin: 18px auto;
    text-align: left;
}

.corporate-plan ul li {
    margin: 9px 0;
    padding-left: 28px;
    position: relative;
    color: #d8d0e6;
    font-size: 0.95rem;
}

/* Фиолетовая галочка для корпоративного тарифа */
.corporate-plan ul li::before {
    content: "✓";
    color: #8e7cb4;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.15rem;
}

.corporate-btn {
    background: linear-gradient(145deg, #8e7cb4, #7a6da0) !important;
    max-width: 300px;
    margin-top: 16px;
    padding: 12px 22px;
    font-size: 1rem;
}

/* Ссылки внизу страницы подписки */
.links {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Стиль для ссылок "Назад" */
.back-link {
    background: none;
    border: 1px solid rgba(52, 152, 219, 0.4);
    color: #3498db;
    padding: 8px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none;
    width: auto;
    min-width: 140px;
}

.back-link:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: none;
}

/* ===== СТРАНИЦА УСЛОВИЙ (ТЕРМИНЫ) ===== */
.terms-container {
    background: rgba(15, 25, 45, 0.7);
    border-radius: 16px;
    padding: 40px;
    margin: 40px auto;
    max-width: 900px;
    border: 1px solid rgba(52, 152, 219, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
}

.terms-container h1 {
    text-align: center;
    color: #3498db;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.terms-container h2 {
    color: #3498db;
    margin: 28px 0 16px;
    font-size: 1.4rem;
}

.terms-container p {
    margin-bottom: 16px;
    color: #e6f1ff;
}

.terms-container ul {
    margin: 16px 0 24px 20px;
    padding-left: 10px;
}

.terms-container li {
    margin-bottom: 10px;
    color: #bdc3c7;
}

/* Выделенный текст */
.highlight {
    color: #2ecc71;
    font-weight: 600;
}

.footer-link {
    color: #3498db;
    text-decoration: underline;
}

.footer-link:hover {
    color: #2980b9;
}

/* ===== МОДАЛЬНОЕ ОКНО ДЛЯ ТАРИФОВ ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

/* Анимация появления */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal {
    background: linear-gradient(145deg, #1a2f4e, #0f1f3a);
    border: 2px solid rgba(52, 152, 219, 0.5);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(52, 152, 219, 0.1);
    animation: slideUp 0.3s ease;
}

/* Анимация выезжания снизу */
@keyframes slideUp {
    from { 
        transform: translateY(50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.modal h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #e6f1ff;
    text-align: center;
}

.modal p {
    color: #bdc3c7;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Блок с ценой в модальном окне */
.modal .price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    margin: 20px 0;
    text-align: center;
    padding: 15px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal .price-tag span {
    font-size: 1.1rem;
    color: #bdc3c7;
    font-weight: normal;
}

/* Поле ввода email в модальном окне */
.modal input {
    width: 100%;
    padding: 18px;
    background: rgba(10, 25, 47, 0.9);
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 12px;
    color: #e6f1ff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.modal input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.modal input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Кнопки в модальном окне */
.modal-buttons {
    display: flex;
    gap: 15px;
}

.modal-btn {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Основная кнопка (отправить) */
.modal-btn.primary {
    background: linear-gradient(145deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.modal-btn.primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.modal-btn.primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Вторичная кнопка (отмена) */
.modal-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e6f1ff;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.modal-btn.secondary:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

/* Кнопка закрытия модального окна */
.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: #bdc3c7;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
}

.close-modal:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.2);
}

/* Сообщения об успехе/ошибке в модальном окне */
.modal .success-message,
.modal .error-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

.modal .success-message {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    color: #10b981;
}

.modal .error-message {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Стили для индикации загрузки при отправке */
.modal-btn.primary:disabled {
    position: relative;
    overflow: hidden;
}

/* Анимация загрузки (бегущая полоска) */
.modal-btn.primary:disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    from { left: -100%; }
    to { left: 100%; }
}

/* ===== СТРАНИЦА "О КОМПАНИИ" ===== */
.about-container {
    background: rgba(15, 25, 45, 0.7);
    border-radius: 16px;
    padding: 40px;
    margin: 40px auto;
    max-width: 900px;
    border: 1px solid rgba(52, 152, 219, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
}

.about-container h1 {
    text-align: center;
    color: #3498db;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.about-container h2 {
    color: #3498db;
    margin: 28px 0 16px;
    font-size: 1.4rem;
}

.about-container p,
.about-container li {
    margin-bottom: 12px;
    color: #e6f1ff;
}

.about-container ul {
    margin: 12px 0 20px 24px;
    padding-left: 10px;
}

.about-container .highlight {
    color: #2ecc71;
    font-weight: 600;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.tags span {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(52, 152, 219, 0.25);
}

/* ===== АДАПТИВНОСТЬ ДЛЯ РАЗНЫХ ЭКРАНОВ ===== */

/* Для планшетов и небольших ноутбуков */
@media (max-width: 1100px) {
    .form-container {
        grid-template-columns: 1fr;
    }
}

/* Для планшетов */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        justify-content: center;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .grid,
    .plans {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: center;
    }
    
    .plan {
        max-width: 90%;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-nav {
        align-items: center;
    }
}

/* Для мобильных телефонов */
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 15px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .card {
        padding: 20px;
    }
    
    button, .btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
}