.vps-section {
    display: block;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border-radius: 32px;
    padding: 2.2rem 2.5rem;      /* чуть компактнее */
    box-shadow: 0 12px 28px -10px var(--primary-light);
    border: 1px solid var(--primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    box-sizing: border-box;
}

.vps-section *,
.vps-section *::before,
.vps-section *::after {
    box-sizing: inherit;
}

/* ДВУХКОЛОНОЧНАЯ СЕТКА: 2/3 — контент, 1/3 — картинка */
.vps-section .hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;  /* контент занимает 2/3, изображение 1/3 */
    gap: 2rem;
    align-items: center;
}

/* ЛЕВАЯ КОЛОНКА — контент */
.vps-section .hero-content {
    display: flex;
    flex-direction: column;
}

.vps-section h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 0 0 0.7rem 0;
}

.vps-section .description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
    font-weight: 400;
}

/* ========== КАРТОЧКИ ПРЕИМУЩЕСТВ — МИНИМАЛЬНЫЕ ========== */
.vps-section .features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;                /* очень плотно */
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.vps-section .feature-item {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.9), var(--bg-card));
    border: 1px solid var(--border);
    border-radius: 12px;         /* ещё меньше скругление */
    padding: 0.6rem 0.8rem;      /* минимальные отступы */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.15s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
}

.vps-section .feature-item:hover {
    border-color: var(--primary-light);
    background: radial-gradient(circle at 0% 30%, #253141, var(--bg-card));
    box-shadow: 0 6px 14px -4px rgba(139, 92, 246, 0.25);
    transform: translateY(-2px);
}

.vps-section .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: rgba(139, 92, 246, 0.12);
    border-radius: 6px;
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.vps-section .feature-text {
    font-size: 0.82rem;          /* очень мелко, но читаемо */
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.vps-section .feature-item.platforms .feature-text {
    font-size: 0.8rem;
    font-weight: 550;
    color: var(--white);
}

/* группа кнопок (чуть меньше) */
.vps-section .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 0.2rem 0 0 0;
    padding: 0;
}

.vps-section .btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
    letter-spacing: 0.3px;
    cursor: pointer;
    background: transparent;
}

.vps-section .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 6px 12px -6px rgba(139, 92, 246, 0.3);
}

.vps-section .btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 18px -8px rgba(124, 58, 237, 0.45);
}

.vps-section .btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
}

.vps-section .btn-secondary:hover {
    border-color: var(--primary-light);
    color: var(--white);
    background-color: rgba(139, 92, 246, 0.06);
    transform: translateY(-2px);
}


/* ========== ПРАВАЯ КОЛОНКА — КОНТЕЙНЕР ПОД КАРТИНКУ ========== */
.vps-section .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 270px;           /* фиксированная высота для пустого блока */
    height: 100%;
    min-width: 280px;
    max-height: 380px;
    border: 2px solid var(--border);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    background: url("../img/planetImage.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.vps-section .image-placeholder {
    opacity: 0.7;
}

/* ========== АДАПТАЦИЯ ========== */
@media (max-width: 900px) {
    .vps-section .hero-grid {
        grid-template-columns: 1fr;  /* одна колонка */
        gap: 1.8rem;
    }
    /* картинка автоматически идёт после контента (order не задан) */
    .vps-section .hero-image {
        min-height: 270px;
        max-height: 1000px;
        height: 500px;
    }
}

@media (max-width: 700px) {
    .vps-section {
        padding: 1.8rem 1.5rem;
    }
    .vps-section h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 650px) {
    .vps-section .features-showcase {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .vps-section {
        padding: 1.5rem 1.2rem;
    }
    .vps-section .btn {
        padding: 0.55rem 1.2rem;
        font-size: 0.85rem;
    }
    .vps-section .hero-image {
        min-height: 270px;
    }
}
.what-section {
    display: block;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background: transparent;   /* нет своего фона */
    border: none;             /* убрана рамка */
    box-shadow: none;         /* убрана тень */
    border-radius: 0;         /* без скругления – всё на карточках */
    padding: 2.8rem 3rem;     /* внутренние отступы сохраняем – воздух вокруг карточек */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    box-sizing: border-box;
}

.what-section *,
.what-section *::before,
.what-section *::after {
    box-sizing: inherit;
}

/* ----- заголовок – яркий акцент, но без фона ----- */
.what-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 0 0 2rem 0;
    padding-bottom: 0.25rem;
    display: inline-block;
}

/* ----- сетка преимуществ – карточки получают фон, секция прозрачна ----- */
.what-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin: 0 0 2.8rem 0;
    padding: 0;
}

/* сама карточка – мягкий, полупрозрачный фон, рамка, тень */
.what-section .feature-block {
    background: rgba(15, 23, 42, 0.65); /* чуть плотнее, чем было, но всё ещё прозрачно */
    backdrop-filter: blur(4px);
    border-radius: 24px;
    padding: 1.5rem 1.5rem 1.8rem;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.4); /* тень только у карточки */
}

.what-section .feature-block:hover {
    border-color: var(--primary-light);
    background: rgba(31, 41, 55, 0.85);
    transform: translateY(-4px);
    box-shadow: 0 16px 28px -12px rgba(139, 92, 246, 0.25);
}

.what-section .feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.what-section .feature-title::before {
    content: "●";
    color: var(--primary-light);
    font-size: 1.6rem;
    line-height: 1;
}

.what-section .feature-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* ----- метрики – без фона, только текст (фон секции прозрачный) ----- */
.what-section .metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0 0.5rem 0;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid var(--border);
}

.what-section .metric-item {
    text-align: center;
    padding: 0.5rem;
}

.what-section .metric-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1.1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.what-section .metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ----- адаптация ----- */
@media (max-width: 900px) {
    .what-section {
        padding: 2rem 2rem;
    }
    .what-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .what-section {
        padding: 1.8rem 1.5rem;
    }
    .what-section h2 {
        font-size: 1.9rem;
    }
    .what-section .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .what-section .metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .what-section .metrics {
        grid-template-columns: 1fr;
    }
    .what-section .metric-value {
        font-size: 2rem;
    }
}
/* ----- контейнер прозрачный ----- */
.tariffs-section {
    display: block;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 2.8rem 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    box-sizing: border-box;
}

.tariffs-section *,
.tariffs-section *::before,
.tariffs-section *::after {
    box-sizing: inherit;
}

/* ----- заголовки ----- */
.tariffs-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    padding-bottom: 0.25rem;
    display: inline-block;
    border-bottom: 3px solid var(--primary-light);
}

.tariffs-section .tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-light);
    margin: 0.5rem 0 2rem 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* ----- сетка карточек ----- */
.tariffs-section .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 0 1rem 0;
    padding: 0;
}

/* ----- компактная карточка ----- */
.tariffs-section .pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(4px);
    border-radius: 24px;
    padding: 1.2rem 1.2rem 1.4rem;
    border: 1px solid var(--primary-light);
    transition: all 0.25s ease;
    box-shadow: 0 12px 28px -10px var(--primary-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tariffs-section .pricing-card:hover {
    border-color: var(--primary-light);
    background: rgba(31, 41, 55, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 18px 28px -12px rgba(139, 92, 246, 0.3);
}

/* бейдж скидки – только для премиум */
.tariffs-section .discount-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    align-self: flex-start;
}

/* название тарифа с эмодзи */
.tariffs-section .plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* период */
.tariffs-section .plan-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* цена */
.tariffs-section .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.tariffs-section .price-small {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 0.2rem;
}

/* футер карточки (особенности, гарантия) */
.tariffs-section .plan-footnote {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--border);
    font-weight: 400;
    line-height: 1.4;
}

/* кнопка */
.tariffs-section .btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
    letter-spacing: 0.3px;
    cursor: pointer;
    background: transparent;
    margin-top: 1rem;
    text-align: center;
    align-self: flex-start;
}

.tariffs-section .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 16px -6px rgba(139, 92, 246, 0.3);
}

.tariffs-section .btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -8px rgba(124, 58, 237, 0.45);
}

/* ----- адаптивность ----- */
@media (max-width: 950px) {
    .tariffs-section .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tariffs-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 650px) {
    .tariffs-section .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .tariffs-section h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .tariffs-section {
        padding: 1.5rem 1rem;
    }
    .tariffs-section .price {
        font-size: 1.8rem;
    }
    .tariffs-section .plan-name {
        font-size: 1.2rem;
    }
}
.tariffs-section .old-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(148, 163, 184, 0.6);
    text-decoration-thickness: 1.5px;
    margin-left: 4px;
}
.how-section {
    display: block;
    width: 100%;
    max-width: 960px;
    margin-inline:auto;
    margin-top: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 2.8rem 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    box-sizing: border-box;
}

.how-section *,
.how-section *::before,
.how-section *::after {
    box-sizing: inherit;
}

.how-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 0 0 2rem 0;
    padding-bottom: 0.25rem;
    display: inline-block;
    border-bottom: 3px solid var(--primary-light);
}

.how-section .steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-bottom: 1rem;
}

.how-section .step-card {
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 24px;
    padding: 1.6rem 1.6rem 1.8rem;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.how-section .step-card:hover {
    border-color: var(--primary-light);
    background: rgba(31, 41, 55, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 18px 28px -12px rgba(139, 92, 246, 0.3);
}

.how-section .step-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.how-section .step-title span {
    color: var(--primary-light);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.how-section .step-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.how-section .key-block {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 0.9rem 1.2rem;
    margin-bottom: 1.2rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.95rem;
    color: var(--primary-light);
    border: 1px solid var(--border);
    word-break: break-all;
    line-height: 1.4;
}

.how-section .step-footnote {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    border-top: 1px solid var(--border);
    padding-top: 0.8rem;
}

/* ----- список городов (теги) ----- */
.how-section .location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0.8rem 0 1.2rem 0;
    padding: 0;
    list-style: none;
}

.how-section .location-list li {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 0.3rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.15s ease;
    cursor: pointer;
}

.how-section .location-list li:hover {
    border-color: var(--primary-light);
    background: rgba(139, 92, 246, 0.2);
    color: var(--white);
}

/* активный город */
.how-section .location-list li.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.how-section .selected-location {
    background: rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--primary-light);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-top: 0.5rem;
    word-break: break-word;
}

.how-section .selected-location strong {
    color: var(--primary-light);
    font-weight: 700;
}

.how-section .endpoint {
    font-family: monospace;
    background: rgba(0,0,0,0.3);
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    color: var(--text-secondary);
}

/* ----- адаптивность ----- */
@media (max-width: 800px) {
    .how-section .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .how-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .how-section {
        padding: 1.5rem 1rem;
    }
    .how-section h2 {
        font-size: 1.8rem;
    }
    .how-section .step-title {
        font-size: 1.4rem;
    }
}
section{
    margin-top: 0;
}
/* ----- контейнер секции – прозрачный ----- */
.faq-section {
    display: block;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 2rem 1.8rem;   /* чуть компактнее */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    box-sizing: border-box;
}

.faq-section *,
.faq-section *::before,
.faq-section *::after {
    box-sizing: inherit;
}

/* ----- заголовок ----- */
.faq-section h2 {
    font-size: 2rem;        /* немного меньше */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 0 0 1.8rem 0;
    padding-bottom: 0.2rem;
    display: inline-block;
    border-bottom: 3px solid var(--primary-light);
}

/* ----- сетка: 2 колонки, 3 ряда (автоматически) ----- */
.faq-section .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: start;     /* карточки не растягиваются */
}

/* ----- карточка вопроса (компактная) ----- */
.faq-section .faq-item {
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.faq-section .faq-item:hover {
    border-color: var(--primary-light);
    background: rgba(31, 41, 55, 0.85);
    box-shadow: 0 14px 24px -12px rgba(139, 92, 246, 0.25);
}

/* ----- шапка вопроса (кликабельно) ----- */
.faq-section .faq-question {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.2rem;  /* компактнее */
    cursor: pointer;
    user-select: none;
}

/* иконка-треугольник */
.faq-section .faq-icon {
    font-size: 1rem;
    color: var(--primary-light);
    transition: transform 0.2s ease;
    display: inline-block;
    width: 1.2rem;
    text-align: center;
    flex-shrink: 0;
}

.faq-section .faq-item.active .faq-icon {
    transform: rotate(90deg);
}

/* текст вопроса */
.faq-section .faq-question h3 {
    font-size: 1.05rem;    /* чуть меньше */
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

/* ----- ответ (скрыт по умолчанию) ----- */
.faq-section .faq-answer {
    display: none;
    padding: 0 1.2rem 0.9rem 2.9rem; /* выравнивание с вопросом */
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.5;
    border-top: 1px solid transparent;
}

.faq-section .faq-item.active .faq-answer {
    display: block;
    border-top-color: var(--border);
}

.faq-section .faq-answer p {
    margin: 0;
}

/* ----- адаптивность: 1 колонка на узких экранах ----- */
@media (max-width: 700px) {
    .faq-section {
        padding: 1.8rem 1.2rem;
    }
    .faq-section h2 {
        font-size: 1.8rem;
    }
    .faq-section .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 1.5rem 1rem;
    }
    .faq-section .faq-question h3 {
        font-size: 1rem;
    }
    .faq-section .faq-answer {
        padding: 0 1rem 0.8rem 2.6rem;
    }
}
/* ----- контейнер секции – карточка с фоном (можно легко убрать) ----- */
.cta-section {
    display: block;
    width: 100%;
    max-width: 960px;        /* компактная ширина */
    margin: 0 auto;
    background: var(--bg-card);   /* фон карточки */
    border-radius: 28px;
    padding: 2.2rem 2.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    box-sizing: border-box;
    transition: transform 0.2s ease, border-color 0.2s;
    margin-top: 30px;
}

.cta-section *,
.cta-section *::before,
.cta-section *::after {
    box-sizing: inherit;
}

.cta-section {
    border-color: var(--primary-light);
    background: radial-gradient(circle at 0% 30%, #1e293b, var(--bg-card));
    box-shadow: 0 24px 44px -14px rgba(139, 92, 246, 0.25);
}

/* ----- заголовок ----- */
.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

/* ----- описание ----- */
.cta-section .cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 1.8rem 0;
    max-width: 600px;
}

/* ----- группа кнопок (как в первом VPS-блоке) ----- */
.cta-section .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}

.cta-section .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
    letter-spacing: 0.3px;
    cursor: pointer;
    background: transparent;
}

.cta-section .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 16px -6px rgba(139, 92, 246, 0.3);
}

.cta-section .btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 22px -8px rgba(124, 58, 237, 0.45);
}

.cta-section .btn-secondary {
    background-color: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-primary);
}

.cta-section .btn-secondary:hover {
    border-color: var(--primary-light);
    color: var(--white);
    background-color: rgba(139, 92, 246, 0.06);
    transform: translateY(-2px);
}

/* ----- адаптивность ----- */
@media (max-width: 600px) {
    main{
        width: 100%;
    }
    .cta-section {
        padding: 1.8rem 1.5rem;
    }
    .cta-section h2 {
        font-size: 1.7rem;
    }
    .cta-section .cta-description {
        font-size: 1rem;
    }
    .cta-section .button-group {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-section .btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    section{
        padding: 20px !important;
    }
    main{
        margin-inline: 0;
        width: 100%;
    }
}
.tariffs-section .btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
}

.tariffs-section .btn-secondary:hover {
    border-color: var(--primary-light);
    color: var(--white);
    background-color: rgba(139, 92, 246, 0.06);
    transform: translateY(-2px);
}