

/* Start:/local/templates/universe_s1/css/calc.css?175577621914851*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Блок 1: Request Intro */
.request-intro {
    display: flex;

}

.request-intro__content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.request-intro__title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.request-intro__text {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
}

.request-intro__button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.request-intro__button:hover {
    background-color: #2980b9;
    color: #fff;
    text-decoration: none;
}

.request-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.request-advantages__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.request-advantages__icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.request-advantages__text {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

.request-intro__image {
    flex: 1;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url('https://akbstore.com/upload/iblock/642/k1ztioksoug2s8s4t1tr3wej8wk1ouje.png');
    background-size: cover;
    background-position: center;
}

/* Блок 2: Project Calc */
.project-calc {
    display: flex;
    min-height: 100vh;
    padding: 60px;
    gap: 50px;
    background-color: #f8f9fa;
}

.project-calc__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-calc__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.project-calc__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #7f8c8d;
    max-width: 600px;
}

.param-group {
    margin-bottom: 35px;
}

.param-group__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.param-group__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #34495e;
    margin: 0;
}

.help-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.help-checkbox__input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #3498db;
}

.help-checkbox__text {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.param-group__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.param-option {
    display: flex;
    align-items: center;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.param-option:hover {
    border-color: #3498db;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
}

.param-option__radio {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #3498db;
}

.param-option__content {
    display: flex;
    flex-direction: column;
}

.param-option__title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.param-option__desc {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.param-characteristics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slider-param {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.slider-param__label {
    font-weight: 600;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.slider-param__input {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: #e1e8ed;
    border-radius: 3px;
    outline: none;
    margin-bottom: 10px;
}

.slider-param__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
}

.slider-param__range {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.slider-param__value {
    font-weight: 600;
    color: #3498db;
    text-align: center;
    margin: 10px 0;
}

.project-calc__right {
    flex: 0 0 480px;
}

.calc-form {
    background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.3);
}

.calc-form__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
}

.calc-form__text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.calc-form__input,
.calc-form__textarea {
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.calc-form__input:focus,
.calc-form__textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.calc-form__textarea {
    min-height: 120px;
    resize: vertical;
}

.file-upload {
    border: 2px dashed rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.file-upload:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.file-upload__text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.file-upload__input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.calc-form__button {
    background-color: white;
    color: #3498db;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    margin: 15px 0 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.calc-form__button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.checkbox__input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #3498db;
}

.checkbox__text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.calc-form .checkbox__text a{
    color: #fff;
    cursor: pointer;
    text-decoration: underline;
}

/* Блок 3: How We Produce */
.how-we-produce {
    padding: 80px 60px;
    background-color: white;
}

.how-we-produce__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.how-we-produce__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.how-we-produce__text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #7f8c8d;
    max-width: 700px;
}

.how-we-produce__time {
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 15px;
    width: 250px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.how-we-produce__time:hover {
    border-color: #3498db;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.1);
}

.how-we-produce__time-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #3498db;
}

.how-we-produce__time-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    margin-top: 10px;
}

.how-we-produce__time-text {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 0;
}

.how-we-produce__steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.production-step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.production-step__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.production-step__text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #34495e;
    line-height: 1.4;
}

/* Блок 4: Форма с ТЗ */
.tz-form {
    display: flex;

    gap: 50px;

}

.tz-form__content {
    flex: 1;
    display: flex;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.tz-form__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.tz-form__right {
    width: 400px;
    padding: 40px;
}

.tz-form__title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 0px;
}

.tz-form__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.tz-form__inputs-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.tz-form__input-group {
    flex: 1;
    min-width: 200px;
}

.tz-form__input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tz-form__input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.file-upload--tz {
    flex: 0 0 180px;
    border: 2px dashed #3498db;
    border-radius: 8px;
    padding: 15px;
    background: rgba(52, 152, 219, 0.05);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

@media (max-width: 768px) {
    .file-upload--tz {
        flex: 0 0 50px;
    }
}

.file-upload--tz:hover {
    background: rgba(52, 152, 219, 0.1);
    border-color: #2980b9;
}

.file-upload--tz .file-upload__text {
    color: #3498db;
    font-weight: 600;
    font-size: 1rem;
}

.file-upload--tz .file-upload__input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.tz-form__checkboxes {
    display: flex;
    flex-direction: column;
    margin: 25px 0 0 0;
}

.tz-form__checkboxes .checkbox.checkbox--tz:last-child{
    margin-bottom: 0;
}

.checkbox--tz {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #333;
    margin-bottom: 7px;
}

.checkbox--tz .checkbox__input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: #3498db;
}

.checkbox--tz .checkbox__text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.tz-form__submit {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    height: fit-content;
}

.tz-form__submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.contact-info {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: white;

    border-radius:15px;
    padding: 10px;
    text-align: center;
    height: fit-content;
}

.contact-info__icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #3498db;
}

.contact-info__text {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-info__email {
    font-weight: 700;
    font-size: 1.2rem;
    color: #3498db;
    word-break: break-all;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .project-calc,
    .tz-form {
        padding: 40px;
    }

    .request-intro__content {
        padding: 40px;
    }

    .how-we-produce {
        padding: 60px 40px;
    }
}

@media (max-width: 992px) {
    .request-intro {
        flex-direction: column;
        height: auto;
    }

    .request-intro__image {
        height: 400px;
    }

    .project-calc,
    .tz-form {
        flex-direction: column;
    }

    .tz-form__content {
        flex-direction: column;
    }

    .tz-form__right {
        width: 100%;
        padding: 40px;
    }

    .contact-info {
        border-radius: 0 0 15px 15px;
    }

    .how-we-produce__header {
        flex-direction: column;
        align-items: center;
    }

    .how-we-produce__time {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .param-group__options,
    .request-advantages {
        grid-template-columns: 1fr;
    }

    .tz-form__inputs-row {
        flex-direction: column;
    }

    .file-upload--tz {
        width: 100%;
    }

    .how-we-produce__steps {
        flex-wrap: wrap;
    }

    .production-step {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .request-intro__content,
    .project-calc,
    .how-we-produce,
    .tz-form {
        padding: 30px 20px;
    }

    .request-intro__title,
    .project-calc__title,
    .how-we-produce__title,
    .tz-form__title {
        font-size: 1.8rem;
    }

    .production-step {
        flex: 0 0 100%;
    }

    .how-we-produce__time {
        width: 100%;
    }
}

#pagetitle{
    display: none;
}

.param-group {
    position: relative;
}

.param-group__options {
    position: relative;
}

.param-group__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#f8f9fa;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Оверлей внутри options будет активен при help-active на родителе */
.param-group.help-active .param-group__overlay {
    opacity: 0.5;
    pointer-events: auto;
}

.calc-desc{
    margin-top: 40px;
}

input[type=checkbox]:checked + span{
    background-color: inherit !important;
}

.slider-param__input-text {
    width: 70px;
    padding: 5px 5px 5px 0;
    font-size: 18px;
    text-align: left;
    border: 1px solid #fff;
    border-radius: 4px;
    margin: 0;
}

.slider-param__input-text:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.3);
}
/* End */
/* /local/templates/universe_s1/css/calc.css?175577621914851 */
