/* ================================
   DomStroy header menu
================================ */
.page-header {
    padding-bottom: 15px;
    display: none;
}
.domstroy-menu-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.domstroy-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.domstroy-menu .domstroy-menu__item {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.domstroy-menu .domstroy-menu__item > a,
.domstroy-menu .domstroy-menu__item > span,
.domstroy-menu .domstroy-menu__item > button {
    display: inline-flex;
    align-items: center;
    min-height: 72px;
    padding: 0;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.domstroy-menu .domstroy-menu__item > a:hover,
.domstroy-menu .domstroy-menu__item > span:hover,
.domstroy-menu .domstroy-menu__item.active > a,
.domstroy-menu .domstroy-menu__item.current > a,
.domstroy-menu .domstroy-menu__item.alias-parent-active > a {
    color: #183d24;
}

.domstroy-menu .domstroy-menu__item.active > a::after,
.domstroy-menu .domstroy-menu__item.current > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 2px;
    background: #183d24;
    border-radius: 10px;
}

/* Dropdown */
.domstroy-menu__item.parent > a::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    order: 2;
}

.domstroy-menu__sub {
    position: absolute;
    top: 100%;
    left: -18px;
    z-index: 1000;
    min-width: 220px;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.domstroy-menu__item:hover > .domstroy-menu__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.domstroy-menu__sub .domstroy-menu__item > a,
.domstroy-menu__sub .domstroy-menu__item > span {
    display: flex;
    min-height: auto;
    padding: 11px 18px;
    color: #222;
    font-size: 13px;
    line-height: 1.3;
}

.domstroy-menu__sub .domstroy-menu__item > a:hover,
.domstroy-menu__sub .domstroy-menu__item.active > a,
.domstroy-menu__sub .domstroy-menu__item.current > a {
    color: #183d24;
    background: #f4f7f3;
}

.domstroy-menu__sub .domstroy-menu__item.active > a::after,
.domstroy-menu__sub .domstroy-menu__item.current > a::after {
    display: none;
}

/* Сброс возможных стилей Bootstrap/Helix */
.domstroy-menu.nav {
    flex-wrap: nowrap;
}

.domstroy-menu.nav > li > a {
    padding-left: 0;
    padding-right: 0;
}

.domstroy-menu.nav > li > a:focus {
    color: #183d24;
    background: transparent;
}

/* Mobile */
@media (max-width: 991px) {
    .domstroy-menu-wrap {
        justify-content: flex-start;
    }

    .domstroy-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .domstroy-menu .domstroy-menu__item > a,
    .domstroy-menu .domstroy-menu__item > span,
    .domstroy-menu .domstroy-menu__item > button {
        min-height: auto;
        padding: 14px 0;
        font-size: 15px;
    }

    .domstroy-menu .domstroy-menu__item.active > a::after,
    .domstroy-menu .domstroy-menu__item.current > a::after {
        display: none;
    }

    .domstroy-menu__sub {
        position: static;
        min-width: 100%;
        padding: 0 0 0 16px;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
    }

    .domstroy-menu__sub .domstroy-menu__item > a,
    .domstroy-menu__sub .domstroy-menu__item > span {
        padding: 10px 0;
        background: transparent;
    }
}
#sp-header .domstroy-menu .domstroy-menu__item > a {
    color: #222;
    font-size: 14px;
    font-weight: 500;
}

#sp-header .domstroy-menu .domstroy-menu__item > a:hover,
#sp-header .domstroy-menu .domstroy-menu__item.active > a,
#sp-header .domstroy-menu .domstroy-menu__item.current > a {
    color: #183d24;
}
.logo {padding-top: 10px;}
.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.project-gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .project-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
.extra_fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.extra_fields_el {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.4;
}

.extra_fields_name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #222;
}

.extra_fields_icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex: 0 0 22px;
}

.extra_fields_value {
    color: #333;
}

.extra_fields_description {
    color: #777;
    font-size: 13px;
    margin-left: 4px;
}

.extra_fields_group {
    font-weight: 700;
    margin: 14px 0 8px;
    font-size: 16px;
}
.gh-product-top{
    display:flex;
    align-items:flex-start;
    gap:32px;
    margin:24px 0 30px;
}

.gh-product-top__media{
    flex:1 1 auto;
    min-width:0;
}

.gh-product-top__specs{
    width:380px;
    flex:0 0 380px;
}

.gh-specs-card{
    background:#f7f7f7;
    border:1px solid #d9d9d9;
    padding:18px 16px 12px;
    box-sizing:border-box;
}

.gh-specs-card__title{
    font-size:18px;
    line-height:1.3;
    font-weight:600;
    color:#4b4b4b;
    margin:0 0 14px;
}

.extra_fields{
    display:block;
    margin:0;
}

.extra_fields_group{
    font-size:14px;
    font-weight:700;
    color:#444;
    margin:14px 0 8px;
}

.extra_fields_el{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:10px 0;
    border-bottom:1px solid #cfcfcf;
}

.extra_fields_left{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
    flex:1 1 auto;
}

.extra_fields_text{
    display:flex;
    flex-direction:column;
    min-width:0;
}

.extra_fields_name{
    font-size:15px;
    line-height:1.25;
    color:#8b8b8b;
    font-weight:400;
}

.extra_fields_description{
    font-size:12px;
    line-height:1.2;
    color:#a0a0a0;
    margin-top:2px;
}

.extra_fields_value{
    flex:0 0 auto;
    text-align:right;
    white-space:nowrap;
    font-size:16px;
    line-height:1.2;
    font-weight:500;
    color:#333;
}

.extra_fields_icon{
    width:22px;
    height:22px;
    object-fit:contain;
    flex:0 0 22px;
    opacity:0.85;
}

.gh-product-top__media img{
    max-width:100%;
    height:auto;
}

@media (max-width: 991px){
    .gh-product-top{
        flex-direction:column;
    }

    .gh-product-top__specs{
        width:100%;
        flex:1 1 auto;
    }
}
 .gh-services-page {
            width: 100%;
            background: #f4f1ea;
            padding: 70px 20px;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
            color: #14281f;
        }
        .gh-services-container {
            max-width: 1180px;
            margin: 0 auto;
        }
        .gh-services-hero {
            position: relative;
            overflow: hidden;
            border-radius: 34px;
            padding: 64px 52px;
            background: linear-gradient(135deg, #14281f 0%, #254535 100%);
            color: #ffffff;
            margin-bottom: 54px;
        }
        .gh-services-hero:before {
            content: "";
            position: absolute;
            right: -110px;
            top: -120px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
        }
        .gh-services-hero:after {
            content: "";
            position: absolute;
            right: 110px;
            bottom: -110px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(215,175,116,0.18);
        }
        .gh-services-label {
            position: relative;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            padding: 10px 16px;
            border-radius: 100px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            color: #ffffff;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 24px;
        }
        .gh-services-title {
            position: relative;
            z-index: 2;
            max-width: 820px;
            margin: 0 0 22px;
            font-size: 48px;
            line-height: 1.12;
            color: #ffffff;
        }
        .gh-services-hero-text {
            position: relative;
            z-index: 2;
            max-width: 780px;
            margin: 0;
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255,255,255,0.86);
        }
        .gh-intro-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 28px;
            margin-bottom: 56px;
        }
        .gh-intro-card,
        .gh-package-card,
        .gh-service-card,
        .gh-work-card,
        .gh-final-block {
            background: #ffffff;
            box-shadow: 0 18px 45px rgba(25, 43, 35, 0.08);
            border: 1px solid rgba(20,40,31,0.06);
        }
        .gh-intro-card {
            border-radius: 30px;
            padding: 36px;
        }

        .gh-intro-card h2 {
            margin: 0 0 16px;
            font-size: 32px;
            line-height: 1.25;
            color: #14281f;
        }

        .gh-intro-card p {
            margin: 0 0 16px;
            font-size: 16px;
            line-height: 1.75;
            color: #53635b;
        }

        .gh-intro-card p:last-child {
            margin-bottom: 0;
        }

        .gh-package-list {
            display: grid;
            gap: 14px;
        }

        .gh-package-card {
            border-radius: 24px;
            padding: 22px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .gh-package-num {
            width: 42px;
            height: 42px;
            min-width: 42px;
            border-radius: 14px;
            background: #d7af74;
            color: #14281f;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
        }

        .gh-package-card h3 {
            margin: 0 0 6px;
            font-size: 18px;
            color: #14281f;
        }

        .gh-package-card p {
            margin: 0;
            font-size: 14px;
            line-height: 1.55;
            color: #586860;
        }

        .gh-section-head {
            max-width: 780px;
            margin: 0 auto 38px;
            text-align: center;
        }

        .gh-section-head h2 {
            margin: 0 0 14px;
            font-size: 38px;
            line-height: 1.2;
            color: #14281f;
        }

        .gh-section-head p {
            margin: 0;
            font-size: 17px;
            line-height: 1.65;
            color: #586860;
        }

        .gh-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin-bottom: 58px;
        }

        .gh-service-card {
            border-radius: 28px;
            padding: 30px;
            transition: 0.25s ease;
        }

        .gh-service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 55px rgba(25, 43, 35, 0.12);
        }

        .gh-service-icon {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            background: #14281f;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .gh-service-icon svg {
            width: 30px;
            height: 30px;
        }

        .gh-service-card h3 {
            margin: 0 0 12px;
            font-size: 22px;
            line-height: 1.25;
            color: #14281f;
        }

        .gh-service-card p {
            margin: 0 0 18px;
            font-size: 15px;
            line-height: 1.65;
            color: #586860;
        }

        .gh-service-card ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 9px;
        }

        .gh-service-card li {
            position: relative;
            padding-left: 22px;
            font-size: 14px;
            line-height: 1.45;
            color: #34483f;
        }

        .gh-service-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #c99d5d;
            font-weight: 900;
        }

        .gh-dark-section {
            background: #14281f;
            color: #ffffff;
            border-radius: 34px;
            padding: 44px;
            margin-bottom: 58px;
            position: relative;
            overflow: hidden;
        }

        .gh-dark-section:after {
            content: "";
            position: absolute;
            right: -90px;
            bottom: -110px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(215,175,116,0.16);
        }
        .gh-dark-section h2 {
            position: relative;
            z-index: 2;
            margin: 0 0 16px;
            font-size: 34px;
            color: #ffffff;
        }
        .gh-dark-section p {
            position: relative;
            z-index: 2;
            max-width: 820px;
            margin: 0 0 28px;
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255,255,255,0.82);
        }
        .gh-work-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .gh-work-card {
            border-radius: 22px;
            padding: 22px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.14);
            box-shadow: none;
        }
        .gh-work-card span {
            display: flex;
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: #d7af74;
            color: #14281f;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            margin-bottom: 14px;
        }
        .gh-work-card h3 {
            margin: 0 0 8px;
            font-size: 18px;
            color: #ffffff;
        }
        .gh-work-card p {
            margin: 0;
            font-size: 14px;
            line-height: 1.55;
            color: rgba(255,255,255,0.76);
        }
        .gh-extra-services {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
            margin-bottom: 58px;
        }
        .gh-extra-card {
            background: #ffffff;
            border-radius: 28px;
            padding: 30px;
            box-shadow: 0 16px 42px rgba(25, 43, 35, 0.08);
            border: 1px solid rgba(20,40,31,0.06);
        }
        .gh-extra-card h3 {
            margin: 0 0 16px;
            font-size: 24px;
            color: #14281f;
        }
        .gh-extra-card ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 12px;
        }
        .gh-extra-card li {
            position: relative;
            padding-left: 26px;
            font-size: 15px;
            line-height: 1.55;
            color: #53635b;
        }
        .gh-extra-card li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 7px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #d7af74;
        }
        .gh-final-block {
            border-radius: 34px;
            padding: 44px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 30px;
            align-items: center;
        }
        .gh-final-block h2 {
            margin: 0 0 12px;
            font-size: 32px;
            color: #14281f;
        }
        .gh-final-block p {
            margin: 0;
            max-width: 760px;
            font-size: 16px;
            line-height: 1.65;
            color: #586860;
        }
        .gh-final-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 56px;
            padding: 0 28px;
            background: #d7af74;
            color: #14281f;
            border-radius: 100px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 900;
            white-space: nowrap;
            transition: 0.25s ease;
        }

        .gh-final-btn:hover {
            background: #c99d5d;
            color: #14281f;
            transform: translateY(-2px);
        }
.gh-final-btn {
    border: none;
    cursor: pointer;
}

.gh-service-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gh-service-modal.is-open {
    display: flex;
}

.gh-service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 22, 16, 0.72);
    backdrop-filter: blur(4px);
}

.gh-service-modal-window {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.24);
    color: #14281f;
}

.gh-service-modal-close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f4f1ea;
    color: #14281f;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gh-service-modal-close:hover {
    background: #e7dfd1;
}
.gh-service-modal-title {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
    color: #14281f;
    padding-right: 44px;
}
.gh-service-modal-text {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #586860;
}
.gh-service-form {
    display: grid;
    gap: 12px;
}
.gh-service-input,
.gh-service-select,
.gh-service-textarea {
    width: 100%;
    border: 1px solid #e5e1da;
    background: #ffffff;
    border-radius: 8px;
    padding: 14px 16px;
    color: #14281f;
    font-size: 14px;
    line-height: 1.3;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.gh-service-input:focus,
.gh-service-select:focus,
.gh-service-textarea:focus {
    border-color: #14281f;
    box-shadow: 0 0 0 3px rgba(20, 40, 31, 0.08);
}
.gh-service-textarea {
    min-height: 92px;
    resize: vertical;
}
.gh-service-policy {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
    line-height: 1.4;
    color: #586860;
}
.gh-service-policy input {
    margin-top: 1px;
    width: 15px;
    height: 15px;
    accent-color: #14281f;
    flex: 0 0 auto;
}
.gh-service-submit {
    width: 100%;
    min-height: 52px;
    border: none;
    border-radius: 100px;
    background: #d7af74;
    color: #14281f;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
}
.gh-service-submit:hover {
    background: #c99d5d;
    transform: translateY(-1px);
}
.gh-service-submit.is-loading {
    opacity: 0.7;
    pointer-events: none;
}
.gh-service-message {
    display: none;
    padding: 11px 13px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.gh-service-message.is-success {
    display: block;
    color: #173722;
    background: rgba(23, 55, 34, 0.08);
    border: 1px solid rgba(23, 55, 34, 0.18);
}

.gh-service-message.is-error {
    display: block;
    color: #9f1d1d;
    background: rgba(159, 29, 29, 0.08);
    border: 1px solid rgba(159, 29, 29, 0.18);
}

body.gh-service-modal-lock {
    overflow: hidden;
}

@media (max-width: 760px) {
    .gh-service-modal-window {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .gh-service-modal-title {
        font-size: 24px;
    }
}
        @media (max-width: 1050px) {
            .gh-services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gh-work-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gh-intro-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 760px) {
            .gh-services-page {
                padding: 40px 14px;
            }

            .gh-services-hero {
                padding: 42px 26px;
                border-radius: 26px;
            }

            .gh-services-title {
                font-size: 32px;
            }

            .gh-services-hero-text {
                font-size: 16px;
            }

            .gh-intro-card,
            .gh-dark-section,
            .gh-final-block {
                padding: 28px 22px;
                border-radius: 24px;
            }

            .gh-section-head h2 {
                font-size: 29px;
            }

            .gh-services-grid,
            .gh-extra-services,
            .gh-work-grid {
                grid-template-columns: 1fr;
            }

            .gh-service-card,
            .gh-extra-card {
                padding: 26px 22px;
                border-radius: 24px;
            }

            .gh-final-block {
                grid-template-columns: 1fr;
            }

            .gh-final-block h2 {
                font-size: 26px;
            }
        }
        .gh-final-btn {
    border: none;
    cursor: pointer;
}

.gh-steps-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gh-steps-modal.is-open {
    display: flex;
}

.gh-steps-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 22, 16, 0.72);
    backdrop-filter: blur(4px);
}

.gh-steps-modal-window {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.24);
    color: #14281f;
}

.gh-steps-modal-close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f4f1ea;
    color: #14281f;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-steps-modal-close:hover {
    background: #e7dfd1;
}

.gh-steps-modal-title {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
    color: #14281f;
    padding-right: 44px;
}

.gh-steps-modal-text {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #586860;
}

.gh-steps-form {
    display: grid;
    gap: 12px;
}

.gh-steps-input,
.gh-steps-textarea {
    width: 100%;
    border: 1px solid #e5e1da;
    background: #ffffff;
    border-radius: 8px;
    padding: 14px 16px;
    color: #14281f;
    font-size: 14px;
    line-height: 1.3;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gh-steps-input:focus,
.gh-steps-textarea:focus {
    border-color: #14281f;
    box-shadow: 0 0 0 3px rgba(20, 40, 31, 0.08);
}

.gh-steps-textarea {
    min-height: 110px;
    resize: vertical;
}

.gh-steps-policy {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
    line-height: 1.4;
    color: #586860;
}

.gh-steps-policy input {
    margin-top: 1px;
    width: 15px;
    height: 15px;
    accent-color: #14281f;
    flex: 0 0 auto;
}

.gh-steps-submit {
    width: 100%;
    min-height: 52px;
    border: none;
    border-radius: 100px;
    background: #d7af74;
    color: #14281f;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
}

.gh-steps-submit:hover {
    background: #c99d5d;
    transform: translateY(-1px);
}

.gh-steps-submit.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.gh-steps-message {
    display: none;
    padding: 11px 13px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.gh-steps-message.is-success {
    display: block;
    color: #173722;
    background: rgba(23, 55, 34, 0.08);
    border: 1px solid rgba(23, 55, 34, 0.18);
}

.gh-steps-message.is-error {
    display: block;
    color: #9f1d1d;
    background: rgba(159, 29, 29, 0.08);
    border: 1px solid rgba(159, 29, 29, 0.18);
}

body.gh-steps-modal-lock {
    overflow: hidden;
}

@media (max-width: 760px) {
    .gh-steps-modal-window {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .gh-steps-modal-title {
        font-size: 24px;
    }
}