		a {
			color: #075e54;
		}
        /* главная карточка оплаты */
        .payment-container {
            max-width: 880px;
            width: 100%;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 2rem;
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25), 0 8px 18px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.2s ease;
        }

        /* шапка */
        .payment-header {
            background: #075e54;
            padding: 1.8rem 2rem;
            color: white;
        }

        .payment-header h1 {
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /*.payment-header h1::before {
            content: "💳";
            font-size: 1.8rem;
            font-weight: normal;
        }*/

        .payment-header p, p {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 0.5rem;
        }

        /* основная область с услугами */
        .services-section {
            padding: 2rem 2rem 1.5rem 2rem;
        }

        /* каждый блок-категория */
        .service-category {
            background: #fefefe;
            border-radius: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid #eef2f8;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
            transition: box-shadow 0.2s;
        }

        .service-category:hover {
            box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.1);
        }

        .category-title {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 1.2rem 1.5rem;
            background: #0687781f;
			border-bottom: 2px solid #075e5440;
            border-radius: 1.5rem 1.5rem 0 0;
            font-weight: 700;
            font-size: 1.35rem;
            color: #075e54;
        }

        .category-title span:first-child {
            font-size: 1.7rem;
        }

        /* список чекбоксов */
        .checkbox-list {
            padding: 0.5rem 0.25rem 0.75rem 0.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            padding: 0.9rem 1.2rem;
            margin: 0.2rem 0;
            border-radius: 1rem;
            transition: background 0.15s;
            cursor: pointer;
            background: white;
        }

        .checkbox-item:hover {
            background: #0687780d;
        }

        .checkbox-item input[type="checkbox"] {
            /*width: 1.3rem;
            height: 1.3rem;*/
            margin-right: 1rem;
            cursor: pointer;
            accent-color: #075e54cf;
            transform: scale(1);
            flex-shrink: 0;
        }

        .service-name {
            font-size: 1.02rem;
            font-weight: 500;
            color: #495057;
            letter-spacing: -0.2px;
            flex: 1;
        }

        /* дополнительный стиль для удобства */
        hr {
            margin: 0 1rem;
            border: none;
            border-top: 1px solid #e9eef3;
        }

        /* итоговая панель */
        .total-panel {
            background: #fcfef9;
            border-top: 1px solid #e2e9f0;
            padding: 1.2rem 2rem 2rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .price-summary {
            background: #e0efee;
            padding: 0.7rem 1.4rem;
            border-radius: 2rem;
            font-weight: 600;
            font-size: 1.25rem;
            color: #075e54;
        }

        .price-summary span {
            font-size: 1.6rem;
            font-weight: 800;
            color: #0c4e6e;
        }

        .pay-button {
            background: #075e54;
            border: none;
            padding: 0.9rem 2.2rem;
            font-size: 1rem;
            font-weight: 600;
            font-family: inherit;
            color: white;
            border-radius: 3rem;
            cursor: pointer;
            transition: 0.2s;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .pay-button:hover {
            background: #035148;
            transform: scale(0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .pay-button:active {
            transform: scale(0.97);
        }

        /* сообщение об оплате */
        .toast-message {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            background: #1e2f3c;
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 60px;
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            backdrop-filter: blur(4px);
            transition: opacity 0.2s ease;
            opacity: 0;
            pointer-events: none;
            white-space: nowrap;
        }

        .toast-message.show {
            opacity: 1;
        }

        /* адаптивность */
        @media (max-width: 620px) {
            body {
                padding: 1rem;
            }
            .services-section {
                padding: 1.2rem;
            }
            .total-panel {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            .pay-button {
                justify-content: center;
            }
            .checkbox-item {
                padding: 0.7rem 0.8rem;
            }
            .category-title {
                padding: 0.9rem 1.2rem;
                font-size: 1.2rem;
            }
            .toast-message {
                white-space: normal;
                text-align: center;
                max-width: 85%;
                font-size: 0.85rem;
            }
        }

        /* небольшая анимация для выбранных услуг */
        .checkbox-item input:checked + .service-name {
            color: #075e54;
            font-weight: 550;
        }

        footer {
            background: #fafcff;
            font-size: 0.7rem;
            text-align: center;
            padding: 1rem;
            color: #6c86a3;
            border-top: 1px solid #eef3fc;
        }
		
		/*----------------------------------------------------------------------------------------------------------------------------------*/
		/*----------------------------------------------------------------------------------------------------------------------------------*/
		/*----------------------------------------------------------------------------------------------------------------------------------*/
		
.card234 {
    max-width: 100%;
    width: 100%;
}

.subtitle {
    color: #075e54;
    margin-bottom: 2rem;
    font-size: 0.9rem;
	text-align: center;
}

.slider-wrapper {
    background: transparent;
    border-radius: 1.5rem;
    padding: 2rem 1.8rem;
    border: 1px solid transparent;
}

input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: #e0efee;
    border-radius: 10px;
    outline: none;
    margin: 0 0 1rem 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #075e54;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border: 2px solid white;
    transition: transform 0.1s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: #075e54;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #4a6f8f;
    font-weight: 500;
	padding: 0 10px;
}

.input-group {
    margin-top: 1.8rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f4e6e;
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: monospace;
    border: 2px solid #e2ebf3;
    border-radius: 1rem;
    background: #ffffff;
    color: #1f6392;
    text-align: center;
    outline: none;
}

.input-group input:read-only {
    background: #f8fafd;
}

/*----------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------------------*/

	.checkbox-list {
        transition: all 0.3s ease;
    }
    
    .checkbox-item {
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    
    .checkbox-item.expanding {
        animation: fadeInUp 0.3s ease forwards;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .toggle-companies-btn {
        padding: 0.75rem 1rem 1rem 1rem;
        text-align: center;
        border-top: 1px solid #eef2f8;
        margin-top: 0.5rem;
    }
    
    .show-more-btn {
        background: #e0efee;
		border: 1px solid #aacbc7;
		padding: 0.55rem 1.5rem;
		font-size: 0.85rem;
		font-weight: 500;
		font-family: inherit;
		color: #075e54;
        border-radius: 2rem;
        cursor: pointer;
        transition: all 0.2s ease;
        width: 100%;
        max-width: 200px;
    }
    
    .show-more-btn:hover {
        background: #075e54;
		border-color: #075e54;
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(31, 99, 146, 0.2);
    }
    
    .show-more-btn:active {
        transform: translateY(0);
    }
    
    /* Стиль для состояния "Показать меньше" */
    .toggle-companies-btn .show-less-btn {
        background: #fef3e6;
        border-color: #f0d9b5;
        color: #c47d2e;
    }
    
    .toggle-companies-btn .show-less-btn:hover {
        background: #e6a345;
        border-color: #e6a345;
        color: white;
    }
	
.pay-button:disabled {
    background: #cccccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
    transform: none;
}

.pay-button:disabled:hover {
    background: #cccccc;
    transform: none;
}

/* стили для футера и ссылок */

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            align-items: center;
			justify-content: center;
        }

        .doc-link {
            font-size: 0.85rem;
            font-weight: 500;
            text-decoration: none;
            color: #075e54;
            padding: 0.25rem 0;
            position: relative;
            transition: color 0.2s ease;
            white-space: nowrap;
        }

        .doc-link:hover {
            color: #4b8f87;
            text-decoration: underline;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .footer-links {
                justify-content: center;
                gap: 1.2rem;
            }
            .doc-link {
                white-space: normal;
            }
        }