/* ONCOset Test Styles - Уникальные стили для онко-теста */
/* Основные переменные */
:root {
    --onko-primary: #46c162;
    --onko-secondary: #0b605b;
    --onko-white: #ffffff;
    --onko-light-gray: #f5f5f5;
    --onko-gray: #e0e0e0;
    --onko-dark-gray: #666666;
    --onko-text: #333333;
    --onko-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --onko-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --onko-border-radius: 12px;
    --onko-transition: all 0.3s ease;
}

/* Сброс стилей для секций теста */
.onko-banner,
.onko-test,
.onko-info {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.onko-banner *,
.onko-test *,
.onko-info * {
    box-sizing: border-box;
}

/* ===== БАННЕР ===== */
.onko-banner {
    background: linear-gradient(135deg, var(--onko-secondary) 0%, var(--onko-primary) 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.onko-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.onko-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.onko-banner__content {
    color: var(--onko-white);
}

.onko-banner__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: var(--onko-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.onko-banner__subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

.onko-banner__features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.onko-banner__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.onko-banner__icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.onko-banner__cta {
    background: var(--onko-white);
    color: var(--onko-secondary);
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--onko-border-radius);
    cursor: pointer;
    transition: var(--onko-transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.onko-banner__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.onko-banner__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.onko-banner__image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* ===== ТЕСТ ===== */
.onko-test {
    padding: 80px 20px;
    background: var(--onko-light-gray);
}

.onko-test__container {
    max-width: 1100px;
    margin: 0 auto;
}

.onko-test__header {
    text-align: center;
    margin-bottom: 50px;
}

.onko-test__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--onko-secondary);
    margin: 0 0 15px 0;
}

.onko-test__description {
    font-size: 18px;
    color: var(--onko-dark-gray);
    margin: 0 0 30px 0;
}

.onko-test__progress {
    max-width: 600px;
    margin: 0 auto;
}

.onko-test__progress-bar {
    width: 100%;
    height: 8px;
    background: var(--onko-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.onko-test__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--onko-secondary), var(--onko-primary));
    transition: width 0.4s ease;
    border-radius: 10px;
}

.onko-test__progress-text {
    display: block;
    text-align: center;
    font-size: 14px;
    color: var(--onko-dark-gray);
    font-weight: 500;
}

.onko-test__form {
    background: var(--onko-white);
    padding: 50px;
    border-radius: var(--onko-border-radius);
    box-shadow: var(--onko-shadow);
}

.onko-test__question {
    display: none;
}

.onko-test__question.active {
    display: block;
    animation: fadeInSlide 0.4s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.onko-test__question-number {
    display: inline-block;
    background: var(--onko-primary);
    color: var(--onko-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.onko-test__question-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--onko-text);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.onko-test__question-note {
    font-size: 14px;
    color: var(--onko-dark-gray);
    margin: 0 0 25px 0;
    font-style: italic;
}

.onko-test__options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.onko-test__option {
    position: relative;
}

.onko-test__option input[type="radio"],
.onko-test__option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.onko-test__option-label {
    display: block;
    padding: 18px 20px;
    background: var(--onko-light-gray);
    border: 2px solid var(--onko-gray);
    border-radius: var(--onko-border-radius);
    cursor: pointer;
    transition: var(--onko-transition);
    font-size: 16px;
    line-height: 1.5;
}

.onko-test__option input:checked + .onko-test__option-label {
    background: rgba(70, 193, 98, 0.1);
    border-color: var(--onko-primary);
    color: var(--onko-secondary);
    font-weight: 500;
}

.onko-test__option-label:hover {
    border-color: var(--onko-primary);
    transform: translateX(5px);
}

/* Поля ввода */
.onko-test__input-group {
    margin-bottom: 20px;
}

.onko-test__input-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--onko-text);
    margin-bottom: 8px;
}

.onko-test__input {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid var(--onko-gray);
    border-radius: var(--onko-border-radius);
    transition: var(--onko-transition);
    font-family: inherit;
}

.onko-test__input:focus {
    outline: none;
    border-color: var(--onko-primary);
    box-shadow: 0 0 0 3px rgba(70, 193, 98, 0.1);
}

/* Навигация */
.onko-test__navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.onko-test__btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--onko-border-radius);
    cursor: pointer;
    transition: var(--onko-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
}

.onko-test__btn--primary {
    background: var(--onko-primary);
    color: var(--onko-white);
    box-shadow: 0 4px 12px rgba(70, 193, 98, 0.3);
}

.onko-test__btn--primary:hover {
    background: #3ab054;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(70, 193, 98, 0.4);
}

.onko-test__btn--secondary {
    background: var(--onko-white);
    color: var(--onko-secondary);
    border: 2px solid var(--onko-secondary);
}

.onko-test__btn--secondary:hover {
    background: var(--onko-secondary);
    color: var(--onko-white);
}

.onko-test__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== РЕЗУЛЬТАТЫ ===== */
.onko-test__results {
    background: var(--onko-white);
    padding: 50px;
    border-radius: var(--onko-border-radius);
    box-shadow: var(--onko-shadow);
    animation: fadeInSlide 0.5s ease;
}

.onko-test__results-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--onko-secondary);
    margin: 0 0 30px 0;
    text-align: center;
}

.onko-test__results-content {
    margin-bottom: 40px;
}

.onko-test__result-summary {
    background: linear-gradient(135deg, rgba(11, 96, 91, 0.05), rgba(70, 193, 98, 0.05));
    padding: 30px;
    border-radius: var(--onko-border-radius);
    border-left: 5px solid var(--onko-primary);
    margin-bottom: 30px;
}

.onko-test__result-summary h4 {
    font-size: 20px;
    color: var(--onko-secondary);
    margin: 0 0 15px 0;
}

.onko-test__result-summary p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--onko-text);
    margin: 0;
}

.onko-test__risk-list {
    display: grid;
    gap: 15px;
}

/* Блок CTA перед результатами */
.onko-test__cta-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(11, 96, 91, 0.15), rgba(70, 193, 98, 0.15));
    border-radius: var(--onko-border-radius);
    border: 2px solid var(--onko-secondary);
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(11, 96, 91, 0.2);
}

.onko-test__cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--onko-secondary);
    margin: 0;
    flex: 1;
    font-weight: 600;
}

.onko-test__cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--onko-primary);
    color: var(--onko-white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--onko-border-radius);
    transition: var(--onko-transition);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(70, 193, 98, 0.3);
}

.onko-test__cta-button:hover {
    background: #3ab054;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(70, 193, 98, 0.4);
    color: var(--onko-white);
}

.onko-test__risk-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--onko-light-gray);
    border-radius: var(--onko-border-radius);
    transition: var(--onko-transition);
}

.onko-test__risk-item:hover {
    transform: translateX(5px);
    box-shadow: var(--onko-shadow);
}

.onko-test__risk-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--onko-text);
}

.onko-test__risk-level {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.onko-test__risk-level--low {
    background: rgba(70, 193, 98, 0.2);
    color: #2d8b47;
}

.onko-test__risk-level--medium {
    background: rgba(255, 193, 7, 0.2);
    color: #d68a00;
}

.onko-test__risk-level--high {
    background: rgba(244, 67, 54, 0.2);
    color: #c62828;
}

.onko-test__results-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.onko-test__btn--download {
    display: none !important;
}

.onko-test__btn--download:hover {
    display: none !important;
}

.onko-test__btn--submit {
    background: var(--onko-primary);
    color: var(--onko-white);
    box-shadow: 0 4px 12px rgba(70, 193, 98, 0.3);
}

.onko-test__btn--submit:hover {
    background: #3ab054;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(70, 193, 98, 0.4);
}

.onko-test__btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.onko-test__disclaimer {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    border-radius: var(--onko-border-radius);
}

.onko-test__disclaimer-icon {
    width: 24px;
    height: 24px;
    stroke: #d68a00;
    flex-shrink: 0;
}

.onko-test__disclaimer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--onko-text);
}

/* Рекомендации по процедурам */
.onko-test__recommendations {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(70, 193, 98, 0.05), rgba(11, 96, 91, 0.05));
    border-radius: var(--onko-border-radius);
    border: 2px solid var(--onko-primary);
}

.onko-test__recommendations-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--onko-secondary);
    margin: 0 0 15px 0;
}

.onko-test__recommendations-intro {
    font-size: 16px;
    color: var(--onko-dark-gray);
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.onko-test__recommendations-list {
    display: grid;
    gap: 20px;
}

.onko-test__recommendation-item {
    background: var(--onko-white);
    padding: 20px;
    border-radius: var(--onko-border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--onko-transition);
}

.onko-test__recommendation-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.onko-test__recommendation-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--onko-gray);
}

.onko-test__recommendation-header strong {
    font-size: 18px;
    color: var(--onko-secondary);
}

.onko-test__recommendation-content p {
    font-size: 15px;
    color: var(--onko-text);
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.onko-test__recommendation-link {
    display: inline-flex;
    align-items: center;
    color: var(--onko-primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--onko-transition);
}

.onko-test__recommendation-link:hover {
    color: var(--onko-secondary);
    transform: translateX(5px);
}

/* ===== INFO БЛОК ===== */
.onko-info {
    padding: 80px 20px;
    background: var(--onko-white);
}

.onko-info__container {
    max-width: 1200px;
    margin: 0 auto;
}

.onko-info__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--onko-secondary);
    text-align: center;
    margin: 0 0 60px 0;
}

.onko-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.onko-info__card {
    background: var(--onko-light-gray);
    padding: 40px 30px;
    border-radius: var(--onko-border-radius);
    transition: var(--onko-transition);
    border-top: 4px solid var(--onko-primary);
}

.onko-info__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--onko-shadow-hover);
}

.onko-info__card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: linear-gradient(135deg, var(--onko-primary), var(--onko-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.onko-info__card-icon svg {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    stroke: var(--onko-white);
    stroke-width: 2;
    flex-shrink: 0;
}

.onko-info__card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--onko-secondary);
    margin: 0 0 15px 0;
}

.onko-info__card-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--onko-dark-gray);
    margin: 0;
}

/* Статистика */
.onko-info__stats {
    background: linear-gradient(135deg, var(--onko-secondary), var(--onko-primary));
    padding: 60px 40px;
    border-radius: var(--onko-border-radius);
    color: var(--onko-white);
    margin-bottom: 60px;
}

.onko-info__stats-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px 0;
}

.onko-info__stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.onko-info__stat {
    text-align: center;
}

.onko-info__stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.onko-info__stat-label {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.5;
}

/* CTA блок */
.onko-info__cta {
    text-align: center;
    background: var(--onko-light-gray);
    padding: 50px 40px;
    border-radius: var(--onko-border-radius);
}

.onko-info__cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--onko-secondary);
    margin: 0 0 15px 0;
}

.onko-info__cta-text {
    font-size: 18px;
    color: var(--onko-dark-gray);
    margin: 0 0 30px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.onko-info__cta-btn {
    background: var(--onko-primary);
    color: var(--onko-white);
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--onko-border-radius);
    cursor: pointer;
    transition: var(--onko-transition);
    box-shadow: 0 4px 15px rgba(70, 193, 98, 0.3);
    font-family: inherit;
}

.onko-info__cta-btn:hover {
    background: #3ab054;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 193, 98, 0.4);
}

/* ===== БЛОК ПРЕИМУЩЕСТВ ===== */
.onko-benefits {
    padding: 80px 20px;
    background: var(--onko-light-gray);
}

.onko-benefits__container {
    max-width: 1200px;
    margin: 0 auto;
}

.onko-benefits__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--onko-secondary);
    text-align: center;
    margin: 0 0 60px 0;
}

.onko-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.onko-benefits__item {
    background: var(--onko-white);
    padding: 40px 30px;
    border-radius: var(--onko-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--onko-transition);
    text-align: center;
}

.onko-benefits__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.onko-benefits__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--onko-primary), var(--onko-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onko-benefits__icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--onko-white);
    stroke-width: 2.5;
}

.onko-benefits__item-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--onko-secondary);
    margin: 0 0 15px 0;
}

.onko-benefits__item-text {
    font-size: 16px;
    color: var(--onko-dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== БЛОК ЧЕК-АП ===== */
.onko-checkup {
    padding: 80px 20px;
    background: var(--onko-white);
}

.onko-checkup__container {
    max-width: 900px;
    margin: 0 auto;
}

.onko-checkup__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--onko-secondary);
    text-align: center;
    margin: 0 0 60px 0;
}

/* Вариант 1: Предложенный пользователем стиль */
.onko-checkup__who-needs--variant1 {
    background: linear-gradient(135deg, rgba(11, 96, 91, 0.05), rgba(70, 193, 98, 0.05));
    padding: 30px;
    border-radius: var(--onko-border-radius);
    border-left: 5px solid var(--onko-primary);
    margin-bottom: 50px;
}

.onko-checkup__who-needs--variant1 .onko-checkup__subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--onko-secondary);
    margin: 0 0 15px 0;
}

.onko-checkup__who-needs--variant1 .onko-checkup__intro {
    font-size: 16px;
    color: var(--onko-dark-gray);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.onko-checkup__who-needs--variant1 .onko-checkup__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.onko-checkup__who-needs--variant1 .onko-checkup__list li {
    font-size: 16px;
    color: var(--onko-text);
    line-height: 1.8;
    padding: 10px 0 10px 30px;
    position: relative;
}

.onko-checkup__who-needs--variant1 .onko-checkup__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--onko-primary);
    font-size: 24px;
    line-height: 1;
}

/* Вариант 2: Альтернативный стиль */
.onko-checkup__who-needs--variant2 {
    background: var(--onko-white);
    padding: 40px;
    border-radius: var(--onko-border-radius);
    border: 2px solid var(--onko-primary);
    box-shadow: 0 4px 20px rgba(70, 193, 98, 0.15);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.onko-checkup__who-needs--variant2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--onko-primary), var(--onko-secondary));
}

.onko-checkup__who-needs--variant2 .onko-checkup__subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--onko-secondary);
    margin: 0 0 15px 0;
}

.onko-checkup__who-needs--variant2 .onko-checkup__intro {
    font-size: 16px;
    color: var(--onko-dark-gray);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.onko-checkup__who-needs--variant2 .onko-checkup__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.onko-checkup__who-needs--variant2 .onko-checkup__list li {
    font-size: 16px;
    color: var(--onko-text);
    line-height: 1.8;
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid rgba(70, 193, 98, 0.1);
}

.onko-checkup__who-needs--variant2 .onko-checkup__list li:last-child {
    border-bottom: none;
}

.onko-checkup__who-needs--variant2 .onko-checkup__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--onko-white);
    background: var(--onko-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* Блок преимуществ чек-апа */
.onko-checkup__benefits {
    margin-bottom: 50px;
}

.onko-checkup__benefits-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--onko-secondary);
    margin: 0 0 30px 0;
}

.onko-checkup__benefits-grid {
    display: grid;
    gap: 20px;
}

.onko-checkup__benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--onko-light-gray);
    border-radius: var(--onko-border-radius);
    transition: var(--onko-transition);
}

.onko-checkup__benefit-item:hover {
    background: rgba(70, 193, 98, 0.1);
    transform: translateX(5px);
}

.onko-checkup__check-icon {
    width: 24px;
    height: 24px;
    stroke: var(--onko-primary);
    stroke-width: 3;
    flex-shrink: 0;
}

.onko-checkup__benefit-item span {
    font-size: 16px;
    color: var(--onko-text);
    line-height: 1.6;
}

/* Блок стоимости палат */
.onko-checkup__pricing {
    background: var(--onko-light-gray);
    padding: 40px;
    border-radius: var(--onko-border-radius);
}

.onko-checkup__pricing-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--onko-secondary);
    margin: 0 0 10px 0;
}

.onko-checkup__pricing-intro {
    font-size: 16px;
    color: var(--onko-dark-gray);
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.onko-checkup__pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.onko-checkup__pricing-card {
    background: var(--onko-white);
    padding: 30px;
    border-radius: var(--onko-border-radius);
    border: 2px solid var(--onko-gray);
    transition: var(--onko-transition);
    cursor: pointer;
    position: relative;
}

.onko-checkup__pricing-card:hover {
    border-color: var(--onko-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(70, 193, 98, 0.2);
}

.onko-checkup__pricing-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--onko-secondary);
    margin-bottom: 15px;
}

.onko-checkup__pricing-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--onko-primary);
    margin-bottom: 10px;
}

.onko-checkup__pricing-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--onko-primary);
    opacity: 0.5;
    transition: var(--onko-transition);
}

.onko-checkup__pricing-card:hover .onko-checkup__pricing-arrow {
    transform: translateY(-50%) translateX(5px);
    opacity: 1;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 968px) {
    .onko-banner__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .onko-banner__image {
        order: -1;
    }

    .onko-banner__title {
        font-size: 36px;
    }

    .onko-test__form {
        padding: 30px 25px;
    }

    .onko-test__results {
        padding: 30px 25px;
    }

    .onko-info__stats {
        padding: 40px 25px;
    }

    .onko-info__grid {
        grid-template-columns: 1fr;
    }

    .onko-test__cta-block {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .onko-test__cta-button {
        width: 100%;
        justify-content: center;
    }

    .onko-benefits__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .onko-checkup__who-needs--variant1,
    .onko-checkup__who-needs--variant2 {
        padding: 30px 25px;
    }

    .onko-checkup__pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 640px) {
    .onko-banner {
        padding: 60px 20px;
    }

    .onko-banner__title {
        font-size: 28px;
    }

    .onko-banner__subtitle {
        font-size: 16px;
    }

    .onko-banner__features {
        flex-direction: column;
        gap: 15px;
    }

    .onko-test {
        padding: 60px 20px;
    }

    .onko-test__title {
        font-size: 32px;
    }

    .onko-test__form {
        padding: 25px 20px;
    }

    .onko-test__question-text {
        font-size: 18px;
    }

    .onko-test__navigation {
        flex-direction: column;
    }

    .onko-test__btn {
        width: 100%;
        justify-content: center;
    }

    .onko-test__results-actions {
        flex-direction: column;
    }

    .onko-test__btn--download,
    .onko-test__btn--submit {
        width: 100%;
        justify-content: center;
    }

    .onko-benefits {
        padding: 60px 20px;
    }

    .onko-benefits__title {
        font-size: 32px;
    }

    .onko-benefits__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .onko-benefits__item {
        padding: 30px 25px;
    }

    .onko-checkup {
        padding: 60px 20px;
    }

    .onko-checkup__title {
        font-size: 32px;
    }

    .onko-checkup__who-needs--variant1,
    .onko-checkup__who-needs--variant2 {
        padding: 25px 20px;
        margin-bottom: 40px;
    }

    .onko-checkup__who-needs--variant1 .onko-checkup__subtitle,
    .onko-checkup__who-needs--variant2 .onko-checkup__subtitle {
        font-size: 20px;
    }

    .onko-checkup__benefits-title {
        font-size: 24px;
    }

    .onko-checkup__pricing {
        padding: 30px 20px;
    }

    .onko-checkup__pricing-grid {
        grid-template-columns: 1fr;
    }

    .onko-checkup__pricing-price {
        font-size: 28px;
    }

    .onko-info {
        padding: 60px 20px;
    }

    .onko-info__title {
        font-size: 32px;
    }

    .onko-info__stats-title {
        font-size: 24px;
    }

    .onko-info__stat-number {
        font-size: 42px;
    }

    .onko-info__cta-title {
        font-size: 24px;
    }
}

