

/* Start:/local/css/kontur/form.css?177569523926841*/
/* ============================================ */
/* KONTUR FORM STYLES                           */
/* Version: 1.0                                 */
/* ============================================ */

/* ======================== */
/* МОДАЛЬНОЕ ОКНО */
/* ======================== */

.kontur_modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 63, 84, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.kontur_modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.kontur_modal {
    background: var(--white, #fff);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.kontur_modal-overlay.active .kontur_modal {
    transform: scale(1) translateY(0);
}

.kontur_modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--bg-light, #f6f6f6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.kontur_modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary, #858585);
}

.kontur_modal-close:hover {
    background: var(--accent, #00BEA2);
}

.kontur_modal-close:hover svg {
    color: var(--white, #fff);
}

.kontur_modal-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.kontur_modal-content.kontur_modal-content--full {
    grid-template-columns: 1fr;
}

/* Левая часть — информация о тарифе */
.kontur_modal-info {
    background: linear-gradient(145deg, var(--bg-dark, #013F54) 0%, #025a76 100%);
    padding: 48px 40px;
    border-radius: 24px 0 0 24px;
    color: var(--white, #fff);
    display: flex;
    flex-direction: column;
}

.kontur_modal-info.hidden {
    display: none;
}

.kontur_modal-info-badge {
    display: inline-block;
    background: rgba(0, 190, 162, 0.2);
    color: var(--accent, #00BEA2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    align-self: flex-start;
}

.kontur_modal-info-docs {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.kontur_modal-info-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.kontur_modal-info-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent, #00BEA2);
    margin-bottom: 8px;
}

.kontur_modal-info-per-doc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.kontur_modal-info-features {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kontur_modal-info-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.kontur_modal-info-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent, #00BEA2);
    flex-shrink: 0;
}

/* Правая часть — форма */
.kontur_modal-form-wrapper {
    padding: 48px 40px;
}

.kontur_modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main, #222);
    margin-bottom: 8px;
}

.kontur_modal-subtitle {
    font-size: 15px;
    color: var(--text-secondary, #858585);
    margin-bottom: 32px;
}

/* ======================== */
/* ФОРМА — ОБЩИЕ СТИЛИ */
/* ======================== */

.kontur_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontur_form-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.kontur_form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.kontur_form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main, #222);
}

.kontur_form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.kontur_form-input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: var(--text-secondary, #858585);
    pointer-events: none;
    transition: color 0.3s ease;
}

.kontur_form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-main, #222);
    background: var(--white, #fff);
    transition: all 0.3s ease;
}

.kontur_form-input::placeholder {
    color: var(--text-secondary, #858585);
}

.kontur_form-input:focus {
    outline: none;
    border-color: var(--accent, #00BEA2);
    box-shadow: 0 0 0 4px rgba(0, 190, 162, 0.1);
}

.kontur_form-input-wrapper:focus-within .kontur_form-input-icon {
    color: var(--accent, #00BEA2);
}

.kontur_form-input.error {
    border-color: #e74c3c;
}

.kontur_form-error {
    font-size: 12px;
    color: #e74c3c;
    min-height: 16px;
}

/* Выбор тарифа в форме */
.kontur_form-tarif-select {
    margin-top: 8px;
}

.kontur_form-tarif-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.kontur_form-tarif-option {
    cursor: pointer;
}

.kontur_form-tarif-option input {
    display: none;
}

.kontur_form-tarif-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: var(--bg-light, #f6f6f6);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.kontur_form-tarif-option input:checked + .kontur_form-tarif-option-content {
    background: rgba(0, 190, 162, 0.1);
    border-color: var(--accent, #00BEA2);
}

.kontur_form-tarif-option:hover .kontur_form-tarif-option-content {
    border-color: rgba(0, 190, 162, 0.3);
}

.kontur_form-tarif-docs {
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-dark, #013F54);
}

.kontur_form-tarif-price {
    font-size: 11px;
    color: var(--text-secondary, #858585);
    margin-top: 2px;
}

.kontur_form-tarif-enterprise .kontur_form-tarif-option-content {
    background: var(--bg-dark, #013F54);
}

.kontur_form-tarif-enterprise .kontur_form-tarif-docs,
.kontur_form-tarif-enterprise .kontur_form-tarif-price {
    color: var(--white, #fff);
}

.kontur_form-tarif-enterprise input:checked + .kontur_form-tarif-option-content {
    background: var(--bg-dark, #013F54);
    border-color: var(--accent, #00BEA2);
}

/* Чекбоксы */
.kontur_form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.kontur_form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.kontur_form-checkbox input {
    display: none;
}

.kontur_form-checkbox-box {
    width: 22px;
    height: 22px;
    background: var(--bg-light, #f6f6f6);
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 1px;
}

.kontur_form-checkbox-box svg {
    width: 12px;
    height: 12px;
    color: var(--white, #fff);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.kontur_form-checkbox input:checked + .kontur_form-checkbox-box {
    background: var(--accent, #00BEA2);
    border-color: var(--accent, #00BEA2);
}

.kontur_form-checkbox input:checked + .kontur_form-checkbox-box svg {
    opacity: 1;
    transform: scale(1);
}

.kontur_form-checkbox.error .kontur_form-checkbox-box {
    border-color: #e74c3c;
}

.kontur_form-checkbox-text {
    font-size: 13px;
    color: var(--text-secondary, #858585);
    line-height: 1.5;
}

.kontur_form-checkbox-text a {
    color: var(--accent, #00BEA2);
    text-decoration: none;
    font-weight: 500;
}

.kontur_form-checkbox-text a:hover {
    text-decoration: underline;
}

/* Кнопка отправки */
.kontur_form-submit {
    width: 100%;
    padding: 18px 32px;
    background: var(--accent, #00BEA2);
    color: var(--white, #fff);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.kontur_form-submit:hover {
    background: var(--accent-hover, #00a891);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 190, 162, 0.3);
}

.kontur_form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.kontur_form-submit-loader {
    display: none;
}

.kontur_form-submit.loading .kontur_form-submit-text {
    opacity: 0;
}

.kontur_form-submit.loading .kontur_form-submit-loader {
    display: block;
    position: absolute;
}

.kontur_form-submit-loader svg {
    width: 24px;
    height: 24px;
    animation: kontur_form_spin 1s linear infinite;
}

@keyframes kontur_form_spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Экран успеха */
.kontur_modal-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
}

.kontur_modal-success.active {
    display: flex;
}

.kontur_modal-content.hidden {
    display: none;
}

.kontur_modal-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 190, 162, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: kontur_form_success_pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes kontur_form_success_pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.kontur_modal-success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent, #00BEA2);
}

.kontur_modal-success-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main, #222);
    margin-bottom: 12px;
}

.kontur_modal-success-text {
    font-size: 16px;
    color: var(--text-secondary, #858585);
    margin-bottom: 32px;
}

.kontur_modal-success-btn {
    padding: 16px 48px;
    background: var(--accent, #00BEA2);
    color: var(--white, #fff);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kontur_modal-success-btn:hover {
    background: var(--accent-hover, #00a891);
}

/* ======================== */
/* ВСТРАИВАЕМАЯ ФОРМА */
/* ======================== */

.kontur_inline-form-section {
    padding: 100px 0;
    background: var(--bg-dark, #013F54);
    position: relative;
    overflow: hidden;
}

.kontur_inline-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 190, 162, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.kontur_inline-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.kontur_inline-form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.kontur_inline-form-info {
    color: var(--white, #fff);
}

.kontur_inline-form-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 190, 162, 0.15);
    color: var(--accent, #00BEA2);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
}

.kontur_inline-form-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white, #fff);
}

.kontur_inline-form-title span {
    color: var(--accent, #00BEA2);
}

.kontur_inline-form-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
}

.kontur_inline-form-features {
    display: flex;
    gap: 32px;
}

.kontur_inline-form-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kontur_inline-form-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 190, 162, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kontur_inline-form-feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent, #00BEA2);
}

.kontur_inline-form-feature-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--white, #fff);
}

.kontur_inline-form-feature-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Встраиваемая форма wrapper */
.kontur_inline-form-wrapper {
    background: var(--white, #fff);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.kontur_form-inline .kontur_form-row {
    flex-wrap: wrap;
}

.kontur_form-inline .kontur_form-group {
    min-width: 200px;
}

.kontur_form-submit-inline {
    min-width: 220px;
    white-space: nowrap;
    margin-top: 0;
}

.kontur_form-checkboxes-inline {
    margin-top: 16px;
}

/* ======================== */
/* УВЕДОМЛЕНИЯ */
/* ======================== */

.kontur_notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.kontur_notification.active {
    opacity: 1;
    transform: translateY(0);
}

.kontur_notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--white, #fff);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main, #222);
}

.kontur_notification-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.kontur_notification-success .kontur_notification-icon {
    color: var(--accent, #00BEA2);
}

.kontur_notification-error .kontur_notification-icon {
    color: #e74c3c;
}

.kontur_notification-success {
    border-left: 4px solid var(--accent, #00BEA2);
}

.kontur_notification-error {
    border-left: 4px solid #e74c3c;
}

/* ======================== */
/* АДАПТИВНОСТЬ */
/* ======================== */

@media (max-width: 900px) {
    .kontur_modal-content {
        grid-template-columns: 1fr;
    }
    
    .kontur_modal-info {
        border-radius: 24px 24px 0 0;
        padding: 32px 24px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .kontur_modal-info-badge {
        margin-bottom: 0;
    }
    
    .kontur_modal-info-docs {
        font-size: 48px;
    }
    
    .kontur_modal-info-features {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .kontur_modal-form-wrapper {
        padding: 32px 24px;
    }
    
    .kontur_inline-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .kontur_inline-form-features {
        justify-content: center;
    }
    
    .kontur_form-tarif-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .kontur_modal {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        margin-top: auto;
    }
    
    .kontur_modal-info-features {
        flex-direction: column;
    }
    
    .kontur_form-row {
        flex-direction: column;
    }
    
    .kontur_form-submit-inline {
        width: 100%;
    }
    
    .kontur_inline-form-section {
        padding: 60px 0;
    }
    
    .kontur_inline-form-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .kontur_inline-form-wrapper {
        padding: 24px;
    }
    
    .kontur_form-tarif-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kontur_notification {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

/* ======================== */
/* НЕАКТИВНАЯ КНОПКА */
/* ======================== */

.kontur_form-submit.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #aaa;
    box-shadow: none;
    transform: none;
}

.kontur_form-submit.disabled:hover {
    opacity: 0.6;
    background: #aaa;
    transform: none;
    box-shadow: none;
}

/* ======================== */
/* АНИМАЦИЯ ВСТРЯХИВАНИЯ */
/* ======================== */

@keyframes kontur_shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

.kontur_form-checkbox.shake {
    animation: kontur_shake 0.5s ease-in-out;
}

/* ======================== */
/* ОШИБКА ЧЕКБОКСА */
/* ======================== */

.kontur_form-checkbox.error .kontur_form-checkbox-box {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.kontur_form-checkbox.error .kontur_form-checkbox-text {
    color: #e74c3c;
}

.kontur_form-checkbox.error .kontur_form-checkbox-text a {
    color: #c0392b;
}

/* ======================== */
/* ПОДСКАЗКА (TOOLTIP) */
/* ======================== */

.kontur_form-tooltip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    border-left: 4px solid #e74c3c;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #c0392b;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.kontur_form-tooltip.active {
    opacity: 1;
    transform: translateY(0);
}

.kontur_form-tooltip svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #e74c3c;
}

/* ======================== */
/* АДАПТИВНОСТЬ */
/* ======================== */

@media (max-width: 600px) {
    .kontur_form-tooltip {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .kontur_form-tooltip svg {
        width: 16px;
        height: 16px;
    }
}

/* ================================ */
/* СЕКЦИЯ "ОСТАЛИСЬ ВОПРОСЫ?"       */
/* ================================ */

.kontur_contact-section {
    padding: 100px 0;
    background: var(--bg-light, #f6f6f6);
    position: relative;
    overflow: hidden;
}

.kontur_contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 190, 162, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.kontur_contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(1, 63, 84, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.kontur_contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.kontur_contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Левая часть — информация */
.kontur_contact-info {
    padding-right: 40px;
}

.kontur_contact-label {
    display: inline-block;
    padding: 8px 18px;
    background: var(--white, #fff);
    color: var(--accent, #00BEA2);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 190, 162, 0.2);
}

.kontur_contact-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-main, #222);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.kontur_contact-description {
    font-size: 18px;
    color: var(--text-secondary, #858585);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Преимущества */
.kontur_contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.kontur_contact-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kontur_contact-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--white, #fff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.kontur_contact-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent, #00BEA2);
}

.kontur_contact-feature-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main, #222);
    margin-bottom: 2px;
}

.kontur_contact-feature-text span {
    font-size: 14px;
    color: var(--text-secondary, #858585);
}

/* Контакты */
.kontur_contact-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.kontur_contact-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-dark, #013F54);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kontur_contact-phone:hover {
    color: var(--accent, #00BEA2);
}

.kontur_contact-phone svg {
    width: 22px;
    height: 22px;
    color: var(--accent, #00BEA2);
}

.kontur_contact-hours {
    font-size: 14px;
    color: var(--text-secondary, #858585);
    padding-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

/* Правая часть — форма */
.kontur_contact-form-wrapper {
    background: var(--white, #fff);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(1, 63, 84, 0.08);
    position: relative;
}

.kontur_contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Блок успешной отправки */
.kontur_contact-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white, #fff);
    border-radius: 24px;
}

.kontur_contact-success.active {
    display: flex;
}

.kontur_contact-success-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 190, 162, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: kontur_success_pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes kontur_success_pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.kontur_contact-success-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent, #00BEA2);
}

.kontur_contact-success-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main, #222);
    margin-bottom: 8px;
}

.kontur_contact-success-text {
    font-size: 15px;
    color: var(--text-secondary, #858585);
    margin-bottom: 24px;
}

.kontur_contact-success-btn {
    padding: 14px 32px;
    background: var(--accent, #00BEA2);
    color: var(--white, #fff);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kontur_contact-success-btn:hover {
    background: var(--accent-hover, #00a891);
    transform: translateY(-2px);
}

/* ================================ */
/* АДАПТИВНОСТЬ                     */
/* ================================ */

@media (max-width: 1024px) {
    .kontur_contact-section {
        padding: 80px 0;
    }
    
    .kontur_contact-content {
        gap: 40px;
    }
    
    .kontur_contact-info {
        padding-right: 20px;
    }
}

@media (max-width: 900px) {
    .kontur_contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .kontur_contact-info {
        padding-right: 0;
    }
    
    .kontur_contact-features {
        align-items: center;
    }
    
    .kontur_contact-feature {
        text-align: left;
    }
    
    .kontur_contact-contacts {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .kontur_contact-hours {
        border-left: none;
        padding-left: 0;
        width: 100%;
        margin-top: 8px;
    }
}

@media (max-width: 600px) {
    .kontur_contact-section {
        padding: 60px 0;
    }
    
    .kontur_contact-title {
        font-size: 28px;
    }
    
    .kontur_contact-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .kontur_contact-form-wrapper {
        padding: 24px;
    }
    
    .kontur_contact-feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .kontur_contact-feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .kontur_contact-phone {
        font-size: 18px;
    }
}
/* End */
/* /local/css/kontur/form.css?177569523926841 */
