:root {
    font-size: 16px;
}

@media (min-resolution: 120dpi) {
    :root {
        font-size: 14px;
    }
}

@media (min-resolution: 144dpi) {
    :root {
        font-size: 12px;
    }
}

@media screen and (max-width: 1200px) {
    :root {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        font-size: 14px;
    }
}
.pricing-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
    overflow-y: auto !important;
}

.pricing-modal-overlay * {
    box-sizing: border-box;
}

.pricing-modal-content {
    background: white;
    font-family: Arial, sans-serif;
    border-radius: 0.75rem;
    width: 100%;
    max-width: 100rem;
    height: 95vh;
    max-height: 56.25rem;
    position: relative;
    box-shadow: 
        0 1px 3px rgba(0,0,0,0.2),
        0 10px 20px rgba(0,0,0,0.15),
        0 30px 40px rgba(0,0,0,0.2),
        0 50px 80px rgba(0,0,0,0.3),
        inset 0 -2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    z-index: 2;
    overflow: hidden;
}

.pricing-modal-content .modal-header {
    background: linear-gradient(135deg, rgb(196, 0, 0) 0%, rgb(138, 0, 0) 100%);
    padding: 1.25rem 1.875rem;
    color: white;
    position: relative;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.pricing-modal-content .header-left {
    padding-right: 1.25rem;
}

.pricing-modal-content .header-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3125rem 1.25rem;
    border-radius: 1.25rem;
    letter-spacing: 0.0625rem;
    font-size: 0.8125rem;
    font-weight: bold;
    margin-bottom: 0.625rem;
    display: inline-block;
}

.pricing-modal-content .modal-title {
    margin: 0 0 0.3125rem;
    color: white;
    line-height: 1.2;
    font-size: 1.5rem;
}

.pricing-modal-content .modal-subtitle {
    color: white;
    font-size: 1rem;
    opacity: 0.95;
}

.pricing-modal-content .header-info {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.pricing-modal-content .info-item-header {
    text-align: center;
    min-width: 9.375rem;
}

.pricing-modal-content .info-label-header {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.6875rem;
    margin-bottom: 0.3125rem;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
}

.pricing-modal-content .info-value-header {
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

.pricing-modal-content .contacts-content {
    max-width: 75rem;
    margin: 0 auto;
}

.pricing-modal-content .contact-options {
    display: flex !important;
    flex-direction: row !important;
    margin: 0 0.5rem !important;
    gap: 0.9375rem !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
}

.pricing-modal-content .telegram-option {
    background: #e8f4fd;
    border: 0.125rem solid #b3d9ff;
}

.pricing-modal-content .whatsapp-option {
    background: #edf7ed;
    border: 0.125rem solid #b3e6b3;
}

.pricing-modal-content .email-option {
    background: #fdeaea;
    border: 0.125rem solid #ffb3b3;
}

.pricing-modal-content .telegram-option:hover {
    box-shadow: 0 0 1.125rem rgba(0, 136, 204, 0.35);
    border-color: #0088cc;
    transform: translateY(-0.3125rem) scale(1.02);
}

.pricing-modal-content .whatsapp-option:hover {
    box-shadow: 0 0 1.125rem rgba(37, 211, 102, 0.35);
    border-color: #25D366;
    transform: translateY(-0.3125rem) scale(1.02);
}

.pricing-modal-content .email-option:hover {
    box-shadow: 0 0 1.125rem rgba(196, 0, 0, 0.35);
    border-color: #c40000;
    transform: translateY(-0.3125rem) scale(1.02);
}
.pricing-modal-content .contact-option {
    position: relative;
    overflow: hidden;
}

.pricing-modal-content .contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s ease;
    pointer-events: none;
}

.pricing-modal-content .contact-option:hover::before {
    left: 100%;
}

.pricing-modal-content .contact-option-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2rem, 5vw, 3.5rem);
    height: clamp(2rem, 5vw, 3.5rem);
    border-radius: clamp(0.5rem, 1vw, 0.9rem);
    background: white !important;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pricing-modal-content .contact-option:hover .contact-option-icon {
    transform: scale(1.1) rotate(5deg);
}

.pricing-modal-content .contact-option-text {
    flex: 1;
}

.pricing-modal-content .contact-option-title {
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: #1a1a1a;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    transition: color 0.3s ease;
}
.pricing-modal-content .contact-option-icon svg {
    width: 1.3em;
    height: 1.3em;
}

.pricing-modal-content .telegram-option .contact-option-icon svg {
    color: #0088cc;
}

.pricing-modal-content .whatsapp-option .contact-option-icon svg {
    color: #25D366;
}

.pricing-modal-content .email-option .contact-option-icon svg {
    color: #c40000;
}

.pricing-modal-content .main-content-wrapper {
    flex: 1;
    overflow-y: auto !important;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.pricing-modal-content .main-content {
    display: flex;
    flex: 1;
    min-height: 0;
    height: 100%;
}

.pricing-modal-content .calculator-column {
    width: 50%;
    padding: 1.25rem 1.875rem;
    display: flex;
    flex-direction: column;
}

.pricing-modal-content .right-column {
    width: 50%;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.pricing-modal-content .contacts-section {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    flex-shrink: 0;
}

.pricing-modal-content .included-column {
    flex: 1;
    padding: 1.25rem 1.875rem;
    background: rgb(255, 248, 248);
    display: flex;
    flex-direction: column;
}

.pricing-modal-content .section-title {
    margin: 0.3125rem 0 0.3125rem;
    color: rgb(196, 0, 0);
    padding-bottom: 0.5rem;
    font-size: 1.125rem;
    border-bottom: 0.125rem solid rgb(255, 235, 235);
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.pricing-modal-content .section-title svg {
    width: 1.125rem;
    height: 1.125rem;
    fill: rgb(196, 0, 0);
}

.pricing-modal-content .calculator-options {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
}

.pricing-modal-content .calculator-content-wrapper {
    display: flex;
    gap: 1.875rem;
    position: relative;
    height: 100%;
}

.pricing-modal-content .calculator-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
}

.pricing-modal-content .calculator-right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.pricing-modal-content .cost-included-box {
    flex: 1;
    background: white;
    border: 0.125rem solid rgb(0, 0, 0);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
}

.pricing-modal-content .cost-included-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 1rem !important;
    flex: 1;
    overflow-y: auto;
}

.pricing-modal-content .cost-included-item {
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    border-bottom: 0.0625rem solid rgb(245, 245, 245);
}

.pricing-modal-content .cost-included-item:last-child {
    border-bottom: none;
}

.pricing-modal-content .cost-included-item svg {
    flex-shrink: 0;
    margin-top: 0.1875rem;
    fill: rgb(196, 0, 0);
    width: 1rem;
    height: 1rem;
}

.pricing-modal-content .radio-options {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.pricing-modal-content .radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9375rem;
    background: white;
    border: 0.125rem solid rgb(0, 0, 0);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-modal-content .radio-option:hover {
    border-color: rgb(196, 0, 0);
    background: rgb(255, 248, 248);
}

.pricing-modal-content .radio-option.selected {
    border-color: rgb(196, 0, 0);
    background: rgb(255, 248, 248);
    box-shadow: 0 0.125rem 0.5rem rgba(196, 0, 0, 0.1);
}

.pricing-modal-content .radio-option input[type="radio"] {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: rgb(196, 0, 0);
}

.pricing-modal-content .radio-info {
    flex: 1;
}

.pricing-modal-content .radio-name {
    font-weight: 700;
    color: rgb(51, 51, 51);
    margin-bottom: 0.125rem;
    font-size: 0.9375rem;
}

.pricing-modal-content .radio-description {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
}

.pricing-modal-content .radio-price {
    font-size: 1.125rem;
    font-weight: bold;
    color: rgb(196, 0, 0);
    margin-left: 0.625rem;
    white-space: nowrap;
}

.pricing-modal-content .counter-group {
    background: white;
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-top: 0.3125rem;
}

.pricing-modal-content .counter-label {
    font-size: 0.9375rem;
    font-weight: bold;
    color: rgb(51, 51, 51);
    margin-bottom: 0.75rem;
}

.pricing-modal-content .counter-controls {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
}

.pricing-modal-content .counter-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 0.125rem solid rgb(196, 0, 0);
    background: white;
    color: rgb(196, 0, 0);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pricing-modal-content .counter-btn:hover {
    background: rgb(196, 0, 0);
    color: white;
}

.pricing-modal-content .counter-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(51, 51, 51);
    min-width: 3.125rem;
    text-align: center;
}

.pricing-modal-content .counter-price {
    margin-left: auto;
    color: rgb(102, 102, 102);
    font-size: 0.9375rem;
}

.pricing-modal-content .counter-price span {
    color: rgb(196, 0, 0);
    font-weight: bold;
    font-size: 1.125rem;
}

.pricing-modal-content .extra-options {
    background: white;
    border: 0.125rem solid rgb(230, 230, 230);
    border-radius: 0.5rem;
    padding: 1.25rem;
}

.pricing-modal-content .extra-title {
    font-size: 0.9375rem;
    font-weight: bold;
    color: rgb(51, 51, 51);
    margin-bottom: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-modal-content .extra-buttons {
    display: flex;
    gap: 0.625rem;
}

.pricing-modal-content .extra-btn {
    flex: 1;
    padding: 0.75rem;
    background: white;
    border: 0.125rem solid rgb(0, 0, 0);
    border-radius: 0.375rem;
    color: rgb(102, 102, 102);
    font-size: 0.8125rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-modal-content .extra-btn:hover {
    border-color: rgb(196, 0, 0);
    color: rgb(196, 0, 0);
}

.pricing-modal-content .extra-btn.selected {
    border-color: rgb(196, 0, 0);
    background: rgb(255, 248, 248);
    color: rgb(196, 0, 0);
}

.pricing-modal-content .total-section {
    border-radius: 0.5rem;
    padding: 1.5625rem;
    text-align: center;
}

.pricing-modal-content .total-label {
    color: rgb(0, 0, 0);
    font-size: 0.8125rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
    font-weight: bold;
}

.pricing-modal-content .total-price {
    color: rgb(196, 0, 0);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0;
}

.pricing-modal-content .total-discount {
    color: rgb(0, 150, 0);
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 0.9375rem;
    padding: 0.3125rem 0.625rem;
    background: rgba(0, 200, 0, 0.1);
    border-radius: 0.9375rem;
    display: inline-block;
}

.pricing-modal-content .action-buttons {
    display: flex;
    gap: 0.625rem;
    margin-top: 0.9375rem;
}

.pricing-modal-content .primary-button {
    flex: 1;
    padding: 1rem;
    background: linear-gradient(135deg, rgb(196, 0, 0) 0%, rgb(138, 0, 0) 100%);
    color: white;
    border: none;
    border-radius: 3.125rem;
    font-size: 0.875rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-modal-content .primary-button:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.9375rem rgba(196, 0, 0, 0.3);
}

.pricing-modal-content .secondary-button {
    flex: 1;
    padding: 1rem;
    background: white;
    border: 0.125rem solid rgb(196, 0, 0);
    color: rgb(196, 0, 0);
    border-radius: 3.125rem;
    font-size: 0.875rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-modal-content .secondary-button:hover {
    background: rgb(255, 248, 248);
    transform: translateY(-0.125rem);
}

.pricing-modal-content .secondary-button svg {
    width: 1.125rem;
    height: 1.125rem;
    fill: rgb(196, 0, 0);
}

.pricing-modal-content .included-list {
    list-style: none;
    margin-bottom: 1.25rem;
    flex: 1;
}

.pricing-modal-content .included-item {
    padding: 0.625rem 0;
    border-bottom: 0.0625rem solid rgb(255, 235, 235);
    display: flex;
    align-items: flex-start;
    color: rgb(51, 51, 51);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.pricing-modal-content .included-item:last-child {
    border-bottom: none;
}

.pricing-modal-content .bonus-section {
    background: white;
    border: 0.125rem solid rgb(255, 235, 235);
    border-radius: 0.5rem;
    padding: 0.9375rem;
}

.pricing-modal-content .bonus-title {
    color: rgb(196, 0, 0);
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0625rem;
}

.pricing-modal-content .bonus-title svg {
    width: 1rem;
    height: 1rem;
    fill: rgb(196, 0, 0);
}

.pricing-modal-content .bonus-text {
    color: rgb(102, 102, 102);
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
    line-height: 1.4;
}

.pricing-modal-content .headers-row {
    display: flex;
    margin: 0.125rem 0 0.4375rem;
    justify-content: space-between;
}

.pricing-modal-content .headers-row .section-title {
    width: 48%;
    margin: 0;
}

.pricing-modal-content .calculator-bottom {
    margin-top: 0.9375rem;
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
}

.pricing-modal-content .billing-form-expanded {
    background: white;
    border-radius: 0.5rem;
    padding: 0.9375rem;
    margin-bottom: 0.9375rem;
    flex: 1;
    min-height: 20rem;
    position: relative;
}

.pricing-modal-content .form-container {
    border: 0.125rem solid rgb(0, 0, 0);
    border-radius: 0.5rem;
    padding: 0.9375rem;
    background: white;
    position: relative;
    min-height: 20rem;
}

.pricing-modal-content .compact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5375rem;
}

.pricing-modal-content .form-row-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9375rem;
    align-items: start;
}

.pricing-modal-content .form-group-compact {
    display: flex;
    flex-direction: column;
}

.pricing-modal-content .form-group-compact.full-width {
    grid-column: 1 / -1;
}

.pricing-modal-content .form-group-compact label,
.pricing-modal-content .compact-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(51, 51, 51);
    margin-bottom: 0.3125rem;
    text-transform: uppercase;
    letter-spacing: 0.01875rem;
}

.pricing-modal-content .form-group-compact input[type="text"],
.pricing-modal-content .form-group-compact input[type="tel"],
.pricing-modal-content .form-group-compact input[type="email"],
.pricing-modal-content .form-group-compact input[type="date"] {
    width: 100%;
    padding: 0.5rem 0.625rem;
    border: 0.0625rem solid rgb(210, 210, 210);
    border-radius: 0.25rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    background: white;
    height: 2.25rem;
}

.pricing-modal-content .form-group-compact input:focus {
    outline: none;
    border-color: rgb(196, 0, 0);
    box-shadow: 0 0 0 0.125rem rgba(196, 0, 0, 0.08);
}

.pricing-modal-content .form-group-compact input::placeholder {
    color: #999;
    font-size: 0.9375rem;
}

.pricing-modal-content .edo-compact-inline {
    margin-top: 0.1875rem;
}

.pricing-modal-content .radio-row-inline {
    display: flex;
    gap: 0.9375rem;
    align-items: center;
}

.pricing-modal-content .radio-compact {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    cursor: pointer;
    font-size: 0.75rem;
}

.pricing-modal-content .radio-compact input[type="radio"] {
    width: 0.875rem;
    height: 0.875rem;
    accent-color: rgb(196, 0, 0);
}

.pricing-modal-content .radio-compact span {
    font-size: 0.75rem;
    color: #333;
}

.pricing-modal-content .edo-fields-expanded {
    margin-top: 0.3125rem;
    padding: 0.75rem;
    background: rgb(250, 250, 250);
    border-radius: 0.375rem;
    border: 0.0625rem solid rgb(230, 230, 230);
    grid-column: 1 / -1;
}

.pricing-modal-content .dropdown-container {
    position: relative;
}

.pricing-modal-content .dropdown-select {
    width: 100%;
    padding: 0.5rem 0.625rem;
    border: 0.0625rem solid rgb(210, 210, 210);
    border-radius: 0.25rem;
    font-size: 0.9375rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 2.25rem;
    transition: all 0.2s ease;
}

.pricing-modal-content .dropdown-select:hover {
    border-color: rgb(196, 0, 0);
}

.pricing-modal-content .dropdown-placeholder {
    color: #999;
}

.pricing-modal-content .dropdown-arrow {
    transition: transform 0.2s ease;
}

.pricing-modal-content .dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 0.0625rem solid rgb(210, 210, 210);
    border-radius: 0.25rem;
    margin-top: 0.125rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
    z-index: 100;
    display: none;
    max-height: 18.75rem;
    overflow-y: auto;
}

.pricing-modal-content .dropdown-options.show {
    display: block;
}

.pricing-modal-content .dropdown-option {
    padding: 0.625rem 0.75rem;
    font-size: 0.9375rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 0.0625rem solid rgb(245, 245, 245);
}

.pricing-modal-content .dropdown-option:last-child {
    border-bottom: none;
}

.pricing-modal-content .dropdown-option:hover {
    background: rgb(255, 248, 248);
    color: rgb(196, 0, 0);
}

.pricing-modal-content .dropdown-option.selected {
    background: rgb(255, 248, 248);
    color: rgb(196, 0, 0);
    font-weight: 500;
    position: relative;
}

.pricing-modal-content .billing-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.8) 70%,
        transparent 100%
    );
    clip-path: inset(0 0 1.875rem 0);
    backdrop-filter: blur(0.25rem);
    -webkit-backdrop-filter: blur(0.25rem);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-modal-content .billing-form-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.pricing-modal-content .overlay-message {
    text-align: center;
    color: #000000;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.4;
    max-width: 18.75rem;
    padding: 0.625rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    margin-top: -3.125rem;
}

.pricing-modal-content .billing-form-expanded.blocked {
    position: relative;
    user-select: none;
}

.pricing-modal-content .billing-form-expanded.blocked input,
.pricing-modal-content .billing-form-expanded.blocked .dropdown-select,
.pricing-modal-content .billing-form-expanded.blocked .dropdown-container {
    pointer-events: none;
    opacity: 0.4;
}

.pricing-modal-content .billing-form-expanded.blocked input,
.pricing-modal-content .billing-form-expanded.blocked .dropdown-select {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.pricing-modal-content .dropdown-select.selected {
    border-color: rgb(196, 0, 0);
    background: rgb(255, 248, 248);
}

.pricing-modal-content .custom-dropdown {
    border: none;
    padding: 0;
}

.pricing-modal-content .custom-dropdown .dropdown-select {
    padding: 0.9375rem;
    border: 0.125rem solid rgb(0, 0, 0);
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 4.75rem;
    display: flex;
    align-items: center;
    position: relative;
}

.pricing-modal-content .custom-dropdown .dropdown-options {
    width: 100%;
    border: 0.125rem solid rgb(0, 0, 0);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    top: calc(100% - 0.125rem);
    box-shadow: none;
    background: white;
    z-index: 100;
}

.pricing-modal-content .dropdown-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.pricing-modal-content .dropdown-text-content {
    text-align: left;
}

.pricing-modal-content .dropdown-name {
    font-weight: 700;
    color: rgb(51, 51, 51);
    margin-bottom: 0.125rem;
    font-size: 0.9375rem;
}

.pricing-modal-content .dropdown-description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.3;
}

.pricing-modal-content .dropdown-price {
    font-size: 1.125rem;
    font-weight: bold;
    color: rgb(196, 0, 0);
    white-space: nowrap;
    margin-left: 0.625rem;
}

.pricing-modal-content .option-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-modal-content .option-name {
    font-weight: 700;
    color: rgb(51, 51, 51);
    margin-bottom: 0.125rem;
    font-size: 1rem;
}

.pricing-modal-content .option-description {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.3;
}

.pricing-modal-content .option-price {
    font-size: 1.125rem;
    font-weight: bold;
    color: rgb(196, 0, 0);
    margin-left: 0.625rem;
    white-space: nowrap;
}

.pricing-modal-content .total-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.9375rem;
    gap: 0.9375rem;
}

.pricing-modal-content .total-equals {
    font-size: 2rem;
    color: rgb(196, 0, 0);
    font-weight: bold;
    margin: 0 0.625rem;
}

.pricing-modal-content .total-vat-note {
    font-size: 0.75rem;
    margin-top: 0.3125rem;
    font-weight: normal;
}

.pricing-modal-content .hidden {
    display: none;
}

.pricing-modal-content .dropdown-radio-group {
    display: flex;
    align-items: center;
    flex: 1;
}

.pricing-modal-content .dropdown-price-group {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pricing-modal-content .custom-dropdown .dropdown-select.selected {
    border-color: rgb(196, 0, 0);
    background: rgb(255, 248, 248);
}

.pricing-modal-content .custom-dropdown .dropdown-option.selected {
    background: rgb(255, 248, 248);
}

.pricing-modal-content .custom-dropdown .dropdown-select:hover {
    border-color: rgb(196, 0, 0);
    background: rgb(255, 248, 248);
}

.pricing-modal-content .custom-dropdown .dropdown-option:hover {
    background: rgb(255, 248, 248);
}

.pricing-modal-content .custom-dropdown .dropdown-option {
    position: relative;
    padding-left: 2.8125rem !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9375rem;
    border-bottom: 0.0625rem solid rgb(245, 245, 245);
}

.pricing-modal-content .custom-dropdown .dropdown-option:last-child {
    border-bottom: none;
}

.pricing-modal-content .custom-dropdown .dropdown-option::before {
    content: "";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.125rem;
    height: 1.125rem;
    border: 0.125rem solid rgb(0, 0, 0);
    border-radius: 50%;
    background: white;
}

.pricing-modal-content .custom-dropdown .dropdown-option.selected::before {
    border-color: rgb(196, 0, 0);
    background: rgb(196, 0, 0);
    box-shadow: inset 0 0 0 0.25rem white;
}

.pricing-modal-content .custom-dropdown .dropdown-option input[type="radio"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.pricing-modal-content .custom-dropdown .dropdown-select .dropdown-radio-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-modal-content .custom-radio-dot {
    margin-right: 0.75rem;
}

.pricing-modal-content .modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 20;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.pricing-modal-content .modal-close svg {
    fill: white;
    width: 1.5rem;
    height: 1.5rem;
    transition: fill 0.3s, transform 0.3s;
}

.pricing-modal-content .modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.pricing-modal-content .modal-close:hover svg {
    transform: scale(1.1);
}

.pricing-modal-content .participant-block {
    margin-bottom: 0.5rem;
}

/* Заголовок участника - всё слева в одну строку */
.pricing-modal-content .participant-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.625rem;
    justify-content: flex-start;
}

.pricing-modal-content .participant-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: rgb(196, 0, 0);
}

/* Текст "Назначить контактным лицом" */
.pricing-modal-content .contact-person-text {
    font-size: 0.875rem;
    color: #000000;
    font-weight: 500;
    white-space: nowrap;
}

.pricing-modal-content .participant-block .form-row-compact:first-of-type {
    margin-bottom: 0.5rem;
}

.pricing-modal-content .additional-participants {
    margin-top: 0.625rem;
}
.pricing-modal-content .gold-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 4px;
    border-radius: 40px;
    cursor: pointer;
    width: fit-content;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: none;
    color: #BF360C;
    box-shadow: 0 4px 10px rgba(255, 111, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.pricing-modal-content .gold-toggle:hover::before {
    transform: translateX(100%);
}

.pricing-modal-content .gold-toggle .toggle-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.pricing-modal-content .gold-toggle .toggle-base {
    width: 44px;
    height: 24px;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0 2px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.pricing-modal-content .gold-toggle .toggle-knob {
    width: 20px;
    height: 20px;
    background: #FFB3B3;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.pricing-modal-content .gold-toggle.active {
    background: linear-gradient(135deg, #ffe6e6, #ffd6d6);
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(255, 111, 0, 0.3);
}

.pricing-modal-content .gold-toggle.active .toggle-base {
    background: #ff9999;
}

.pricing-modal-content .gold-toggle.active .toggle-knob {
    transform: translateX(20px);
    background: #c40000;
}

.pricing-modal-content .gold-toggle .button-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    color: #BF360C;
}

@media (max-width: 1097px), (max-width: 960px), (max-width: 768px) {
    .pricing-modal-overlay {
        padding: 0.625rem;
    }
    .pricing-modal-content .header-left,
    .pricing-modal-content .header-info {
        padding-right: 3.5rem;
    }
    .pricing-modal-content {
        height: 98vh;
        max-height: none;
        border-radius: 0.5rem;
    }
    
    .pricing-modal-content .main-content {
        flex-direction: column;
    }
    
    .pricing-modal-content .calculator-column,
    .pricing-modal-content .right-column {
        width: 100%;
        height: auto;
    }
    
    .pricing-modal-content .calculator-column {
        border-right: none;
        border-bottom: 0.0625rem solid rgb(235, 235, 235);
    }
    
    .pricing-modal-content .modal-header,
    .pricing-modal-content .calculator-column {
        padding: 0.9375rem 1.25rem;
    }
    
    .pricing-modal-content .header-info {
        flex-direction: column;
        gap: 0.625rem;
        text-align: center;
    }
    
    .pricing-modal-content .info-item-header {
        min-width: auto;
    }
    
    .pricing-modal-content .contact-option-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .pricing-modal-content .contact-option-title {
        font-size: 0.9375rem;
    }
    
    .pricing-modal-content .total-price {
        font-size: 1.75rem;
    }
    
    .pricing-modal-content .radio-price {
        font-size: 1rem;
    }
    
    .pricing-modal-content .extra-buttons {
        flex-direction: column;
    }
    
    .pricing-modal-content .calculator-content-wrapper {
        gap: 1.25rem;
    }
    
    .pricing-modal-content .form-row-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .pricing-modal-content .billing-form-expanded {
        min-height: auto;
        padding: 0.75rem;
    }
    
    .pricing-modal-content .compact-form-grid {
        gap: 0.75rem;
    }
    
    .pricing-modal-content .radio-row-inline {
        gap: 0.75rem;
    }
    
    .pricing-modal-content .dropdown-select {
        padding: 0.4375rem 0.625rem;
        height: 2.125rem;
    }
    
    .pricing-modal-content .dropdown-option {
        padding: 0.5rem 0.625rem;
    }
    
    /* Скрываем подзаголовки (описания) в радио-кнопках */
    .pricing-modal-content .radio-name {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.3rem;
    }
    
    .pricing-modal-content .radio-description {
        display: inline !important;
        font-size: 0.7rem;
        margin-left: 0;
    }
    
    .pricing-modal-content .radio-description::before {
        content: "— ";
        opacity: 0.7;
    }
    
    /* Если есть подзаголовки в дропдаунах */
    .pricing-modal-content .dropdown-description {
        display: none !important;
    }
    
    /* Если есть option-description в других местах */
    .pricing-modal-content .option-description {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .pricing-modal-content .modal-title {
        font-size: 1.25rem;
    }
    .pricing-modal-content .modal-subtitle {
        font-size: 0.875rem;
        display: none;
    }
    .pricing-modal-content .section-title {
        font-size: 1rem;
    }
    
    .pricing-modal-content .action-buttons {
        flex-direction: column;
    }
}
/* Exit Modal Styles */
.exit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(0.1875rem);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
}

.exit-modal-content {
    background: white;
    border-radius: 0.75rem;
    max-width: 25rem;
    width: 90%;
    position: relative;
    box-shadow: 
        0 1px 3px rgba(0,0,0,0.2),
        0 10px 20px rgba(0,0,0,0.15),
        0 30px 40px rgba(0,0,0,0.2),
        0 50px 80px rgba(0,0,0,0.3),
        inset 0 -2px 5px rgba(0,0,0,0.05);
    padding: 2rem 1.5rem;
    animation: exitModalFadeIn 0.3s ease;
}

@keyframes exitModalFadeIn {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exit-modal-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.exit-modal-icon svg {
    width: 3rem;
    height: 3rem;
    fill: rgb(196, 0, 0);
    filter: drop-shadow(0 0.25rem 0.5rem rgba(196, 0, 0, 0.2));
}

.exit-modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: rgb(196, 0, 0);
    text-align: center;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
}

.exit-modal-text {
    font-size: 1.3rem;
    color: #000000;
    text-align: center;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
    font-weight: 500;
}

.exit-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.exit-modal-btn {
    padding: 0.875rem 1.25rem;
    border-radius: 3.125rem;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
    width: 100%;
    box-sizing: border-box;
}

.exit-modal-btn-primary {
    background: linear-gradient(135deg, rgb(196, 0, 0) 0%, rgb(138, 0, 0) 100%);
    color: white;
    box-shadow: 0 0.25rem 0.9375rem rgba(196, 0, 0, 0.3);
}

.exit-modal-btn-primary:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(196, 0, 0, 0.4);
}

.exit-modal-btn-primary:active {
    transform: translateY(0.0625rem);
    box-shadow: 0 0.125rem 0.5rem rgba(196, 0, 0, 0.3);
}

.exit-modal-btn-secondary {
    background: white;
    color: rgb(196, 0, 0);
    border: 0.125rem solid rgb(196, 0, 0);
    position: relative;
    overflow: hidden;
    padding: 0.75rem 1.25rem;
}

.exit-modal-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 0, 0, 0.1), transparent);
    transition: left 0.7s ease;
    pointer-events: none;
}

.exit-modal-btn-secondary:hover {
    background: rgb(255, 248, 248);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.9375rem rgba(196, 0, 0, 0.2);
}

.exit-modal-btn-secondary:hover::before {
    left: 100%;
}

.exit-modal-btn-secondary:active {
    transform: translateY(0.0625rem);
    box-shadow: 0 0.125rem 0.5rem rgba(196, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .exit-modal-content {
        padding: 1.5rem 1.25rem;
        margin: 1rem;
        max-width: 22rem;
    }
    
    .exit-modal-title {
        font-size: 1.25rem;
    }
    
    .exit-modal-text {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .exit-modal-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .exit-modal-btn-secondary {
        padding: 0.625rem 1rem;
    }
    
    .exit-modal-icon svg {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 480px) {
    .exit-modal-content {
        padding: 1.25rem 1rem;
    }
    
    .exit-modal-title {
        font-size: 1.125rem;
    }
    
    .exit-modal-text {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .exit-modal-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .exit-modal-btn-secondary {
        padding: 0.5rem 0.875rem;
    }
}

@media (min-resolution: 120dpi) {
    .exit-modal-title {
        font-size: 1.25rem;
    }
}

@media (min-resolution: 144dpi) {
    .exit-modal-title {
        font-size: 1.125rem;
    }
}