/* Start custom CSS for html, class: .elementor-element-54e9ca1 */.em-mp {
    --mp-surface: #ffffff;
    --mp-soft: #f2f4f6;
    --mp-text: #171a1f;
    --mp-muted: #5d6671;
    --mp-border: #dfe4e9;
    --mp-dark: #12171d;
    --mp-accent: #f5a000;
    --mp-accent-dark: #ce8300;
    --mp-accent-soft: #fff2cf;
    --mp-green: #247448;
    --mp-green-soft: #eaf7ef;
    --mp-radius-lg: 28px;
    --mp-radius-md: 20px;
    --mp-shadow: 0 18px 52px rgba(18, 26, 35, 0.10);
    --mp-shadow-hover: 0 24px 64px rgba(18, 26, 35, 0.16);

    width: 100%;
    color: var(--mp-text);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.65;
}

.em-mp *,
.em-mp *::before,
.em-mp *::after {
    box-sizing: border-box;
}

.em-mp a {
    text-decoration: none;
}

.em-mp h1,
.em-mp h2,
.em-mp h3,
.em-mp p,
.em-mp ul,
.em-mp ol {
    margin-top: 0;
}

.em-mp h1,
.em-mp h2,
.em-mp h3 {
    color: var(--mp-text);
    line-height: 1.17;
    letter-spacing: -0.025em;
}

.em-mp h1 {
    max-width: 930px;
    margin-bottom: 22px;
    font-size: clamp(38px, 6vw, 70px);
}

.em-mp h2 {
    margin-bottom: 18px;
    font-size: clamp(29px, 4.2vw, 47px);
}

.em-mp h3 {
    margin-bottom: 12px;
    font-size: clamp(20px, 2.1vw, 25px);
}

.em-mp__eyebrow {
    display: block;
    margin-bottom: 11px;
    color: var(--mp-accent-dark);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

/* Первый экран */

.em-mp__hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.65fr);
    gap: clamp(30px, 6vw, 76px);
    align-items: center;
    min-height: 680px;
    overflow: hidden;
    padding: clamp(34px, 6vw, 80px);
    border-radius: var(--mp-radius-lg);
    background:
        radial-gradient(
            circle at 10% 5%,
            rgba(245, 160, 0, 0.23),
            transparent 35%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(245, 160, 0, 0.12),
            transparent 34%
        ),
        var(--mp-dark);
    box-shadow: var(--mp-shadow);
}

.em-mp__hero::before,
.em-mp__hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.em-mp__hero::before {
    top: -150px;
    right: -100px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.em-mp__hero::after {
    right: 70px;
    bottom: -250px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(245, 160, 0, 0.14);
}

.em-mp__hero-main,
.em-mp__hero-panel {
    position: relative;
    z-index: 2;
}

.em-mp__location {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 750;
}

.em-mp__hero h1,
.em-mp__hero .em-mp__lead {
    color: #ffffff;
}

.em-mp__lead {
    max-width: 860px;
    margin-bottom: 14px;
    font-size: clamp(17px, 2vw, 21px);
}

.em-mp__sublead {
    max-width: 830px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
}

.em-mp__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.em-mp__tags span {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.87);
    font-size: 13px;
    font-weight: 700;
}

.em-mp__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.em-mp__button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.2;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.em-mp__button:hover {
    transform: translateY(-2px);
}

.em-mp__button--primary {
    background: var(--mp-accent);
    color: #17120a;
}

.em-mp__button--primary:hover {
    background: var(--mp-accent-dark);
    color: #ffffff;
}

.em-mp__button--secondary {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.em-mp__button--secondary:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--mp-dark);
}

.em-mp__button--ghost {
    color: rgba(255, 255, 255, 0.86);
}

.em-mp__button--ghost:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.em-mp__button--light {
    background: #ffffff;
    color: var(--mp-dark);
}

.em-mp__button--light:hover {
    background: var(--mp-accent-soft);
}

.em-mp__hero-note {
    max-width: 780px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
}

.em-mp__hero-panel {
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--mp-radius-lg);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.em-mp__panel-label {
    display: block;
    margin-bottom: 16px;
    color: #ffc34c;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.em-mp__hero-panel ul {
    display: grid;
    gap: 10px;
    margin-bottom: 23px;
    padding-left: 21px;
}

.em-mp__hero-panel li {
    color: rgba(255, 255, 255, 0.82);
}

.em-mp__hero-panel li::marker {
    color: var(--mp-accent);
}

.em-mp__panel-price {
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.em-mp__panel-price span,
.em-mp__panel-price small {
    display: block;
    color: rgba(255, 255, 255, 0.66);
}

.em-mp__panel-price strong {
    display: block;
    margin: 4px 0 7px;
    color: #ffffff;
    font-size: 29px;
}

/* Факты */

.em-mp__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.em-mp__fact {
    padding: 21px;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    background: var(--mp-surface);
}

.em-mp__fact strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.em-mp__fact span {
    display: block;
    color: var(--mp-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Навигация */

.em-mp__nav {
    position: sticky;
    top: 12px;
    z-index: 15;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
    padding: 14px;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(17, 25, 35, 0.08);
    backdrop-filter: blur(12px);
}

.em-mp__nav a {
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--mp-soft);
    color: var(--mp-text);
    font-size: 14px;
    font-weight: 750;
}

.em-mp__nav a:hover {
    background: var(--mp-accent);
}

/* Общие секции */

.em-mp__section {
    margin-top: clamp(58px, 8vw, 102px);
    scroll-margin-top: 100px;
}

.em-mp__section-heading {
    max-width: 980px;
    margin-bottom: 31px;
}

.em-mp__section-heading > p:last-child {
    margin-bottom: 0;
    color: var(--mp-muted);
    font-size: 18px;
}

.em-mp__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
    gap: clamp(27px, 5vw, 60px);
    align-items: start;
}

.em-mp__intro-text p {
    color: var(--mp-muted);
    font-size: 17px;
}

.em-mp__note {
    padding: 27px;
    border: 1px solid rgba(245, 160, 0, 0.42);
    border-radius: var(--mp-radius-lg);
    background:
        linear-gradient(
            180deg,
            var(--mp-accent-soft),
            #ffffff 72%
        );
    box-shadow: var(--mp-shadow);
}

.em-mp__note > strong {
    display: block;
    margin-bottom: 15px;
    font-size: 20px;
}

.em-mp__note ul {
    display: grid;
    gap: 9px;
    margin-bottom: 0;
    padding-left: 21px;
}

.em-mp__note li {
    color: var(--mp-muted);
}

.em-mp__note li::marker {
    color: var(--mp-accent-dark);
}

/* Карточки */

.em-mp__cards,
.em-mp__lighting,
.em-mp__smart {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.em-mp__card,
.em-mp__lighting article,
.em-mp__smart article {
    padding: 24px;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    background: var(--mp-surface);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.em-mp__card {
    min-height: 255px;
}

.em-mp__card:hover,
.em-mp__lighting article:hover,
.em-mp__smart article:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 160, 0, 0.72);
    box-shadow: var(--mp-shadow-hover);
}

.em-mp__card-number {
    display: inline-flex;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--mp-accent-soft);
    color: var(--mp-accent-dark);
    font-size: 14px;
    font-weight: 900;
}

.em-mp__card p,
.em-mp__lighting p,
.em-mp__smart p {
    margin-bottom: 0;
    color: var(--mp-muted);
}

.em-mp__lighting strong,
.em-mp__smart strong {
    display: block;
    margin-bottom: 8px;
    font-size: 19px;
}

/* Тёмные секции */

.em-mp__section--dark,
.em-mp__section--norms {
    padding: clamp(28px, 5vw, 60px);
    border-radius: var(--mp-radius-lg);
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(245, 160, 0, 0.17),
            transparent 30%
        ),
        var(--mp-dark);
    color: #ffffff;
}

.em-mp__section--dark h2,
.em-mp__section--dark h3,
.em-mp__section--dark strong,
.em-mp__section--norms h2,
.em-mp__section--norms h3,
.em-mp__section--norms strong {
    color: #ffffff;
}

.em-mp__section--dark .em-mp__eyebrow,
.em-mp__section--norms .em-mp__eyebrow {
    color: #ffc34c;
}

.em-mp__section--dark .em-mp__section-heading > p:last-child,
.em-mp__section--norms .em-mp__section-heading > p:last-child {
    color: rgba(255, 255, 255, 0.70);
}

.em-mp__planning,
.em-mp__norms {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.em-mp__planning article,
.em-mp__norms article {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--mp-radius-md);
    background: rgba(255, 255, 255, 0.055);
}

.em-mp__planning article > span {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--mp-accent);
    color: #17120a;
    font-size: 14px;
    font-weight: 900;
}

.em-mp__planning p,
.em-mp__norms p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.70);
}

.em-mp__warning,
.em-mp__norm-warning {
    margin-top: 19px;
    padding: 22px;
    border-left: 5px solid var(--mp-accent);
    border-radius: 0 var(--mp-radius-md) var(--mp-radius-md) 0;
    background: rgba(255, 255, 255, 0.07);
}

.em-mp__warning strong,
.em-mp__norm-warning strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.em-mp__warning p,
.em-mp__norm-warning p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

/* Решение по проводке */

.em-mp__decision {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.em-mp__decision-item {
    padding: 24px;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    background: var(--mp-surface);
}

.em-mp__decision-item--green {
    border-color: #b9dfc8;
    background: var(--mp-green-soft);
}

.em-mp__decision-item > span {
    display: block;
    margin-bottom: 10px;
    color: var(--mp-accent-dark);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.em-mp__decision-item--green > span {
    color: var(--mp-green);
}

.em-mp__decision-item p {
    margin-bottom: 0;
    color: var(--mp-muted);
}

.em-mp__decision-note,
.em-mp__price-note {
    margin-top: 17px;
    padding: 21px;
    border-left: 5px solid var(--mp-accent);
    border-radius: 0 var(--mp-radius-md) var(--mp-radius-md) 0;
    background: var(--mp-accent-soft);
}

.em-mp__decision-note strong,
.em-mp__price-note strong {
    display: block;
    margin-bottom: 7px;
    font-size: 18px;
}

.em-mp__decision-note p,
.em-mp__price-note p {
    margin-bottom: 0;
    color: #5c4a20;
}

/* Услуги */

.em-mp__services,
.em-mp__panel-grid,
.em-mp__network {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.em-mp__service,
.em-mp__panel-grid article,
.em-mp__network article {
    padding: 25px;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    background: var(--mp-surface);
}

.em-mp__service ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 20px;
    margin-bottom: 0;
    padding-left: 21px;
}

.em-mp__service li,
.em-mp__panel-grid li {
    color: var(--mp-muted);
}

.em-mp__service li::marker,
.em-mp__panel-grid li::marker {
    color: var(--mp-accent-dark);
}

.em-mp__panel-grid ul {
    display: grid;
    gap: 8px;
    margin-bottom: 0;
    padding-left: 21px;
}

/* Кухня и терраса */

.em-mp__section--kitchen,
.em-mp__section--terrace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
    gap: clamp(27px, 5vw, 58px);
    align-items: start;
    padding: clamp(28px, 5vw, 58px);
    border-radius: var(--mp-radius-lg);
}

.em-mp__section--kitchen {
    background:
        linear-gradient(
            135deg,
            #fff7e3,
            #f3f5f7 68%
        );
}

.em-mp__section--terrace {
    background:
        linear-gradient(
            135deg,
            #edf7ef,
            #f3f5f7 68%
        );
}

.em-mp__kitchen-main p,
.em-mp__terrace-main p {
    color: var(--mp-muted);
    font-size: 17px;
}

.em-mp__text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #936000;
    font-weight: 850;
}

.em-mp__text-link::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.2s ease;
}

.em-mp__text-link:hover::after {
    transform: translateX(4px);
}

.em-mp__kitchen-list,
.em-mp__terrace-list {
    padding: 25px;
    border-radius: var(--mp-radius-md);
    background: rgba(255, 255, 255, 0.80);
}

.em-mp__kitchen-list {
    border: 1px solid rgba(245, 160, 0, 0.37);
}

.em-mp__terrace-list {
    border: 1px solid rgba(52, 125, 78, 0.30);
}

.em-mp__kitchen-list > strong,
.em-mp__terrace-list > strong {
    display: block;
    margin-bottom: 14px;
    font-size: 20px;
}

.em-mp__kitchen-list ul,
.em-mp__terrace-list ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
    margin-bottom: 0;
    padding-left: 20px;
}

.em-mp__kitchen-list li,
.em-mp__terrace-list li {
    color: var(--mp-muted);
}

.em-mp__kitchen-list li::marker {
    color: var(--mp-accent-dark);
}

.em-mp__terrace-list li::marker {
    color: var(--mp-green);
}

/* Ссылки */

.em-mp__links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.em-mp__links-row a {
    padding: 10px 14px;
    border: 1px solid var(--mp-border);
    border-radius: 999px;
    background: var(--mp-surface);
    color: var(--mp-text);
    font-size: 14px;
    font-weight: 800;
}

.em-mp__links-row a:hover {
    border-color: var(--mp-accent);
    background: var(--mp-accent-soft);
}

/* Мягкие секции */

.em-mp__section--soft,
.em-mp__section--links {
    padding: clamp(28px, 5vw, 58px);
    border-radius: var(--mp-radius-lg);
    background: var(--mp-soft);
}

.em-mp__network p {
    margin-bottom: 0;
    color: var(--mp-muted);
}

/* Стоимость */

.em-mp__section--price {
    padding: clamp(28px, 5vw, 58px);
    border-radius: var(--mp-radius-lg);
    background:
        linear-gradient(
            145deg,
            #fff6de,
            #f1f4f7 65%
        );
}

.em-mp__price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.em-mp__price-grid article {
    padding: 24px;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    background: rgba(255, 255, 255, 0.88);
}

.em-mp__price-grid span {
    display: block;
    margin-bottom: 9px;
    color: var(--mp-muted);
    font-size: 14px;
    font-weight: 750;
}

.em-mp__price-grid strong {
    display: block;
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.25;
}

.em-mp__price-grid p {
    margin-bottom: 0;
    color: var(--mp-muted);
}

/* Этапы */

.em-mp__steps {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.em-mp__steps li {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    background: var(--mp-surface);
}

.em-mp__steps li > span {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mp-accent);
    color: #17120a;
    font-size: 14px;
    font-weight: 900;
}

.em-mp__steps h3 {
    margin-bottom: 6px;
    font-size: 20px;
}

.em-mp__steps p {
    margin-bottom: 0;
    color: var(--mp-muted);
}

/* Гарантия */

.em-mp__warranty {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.em-mp__warranty article {
    padding: 25px;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    background: var(--mp-surface);
}

.em-mp__warranty article > strong {
    display: block;
    margin-bottom: 11px;
    color: var(--mp-accent-dark);
    font-size: 28px;
}

.em-mp__warranty p {
    margin-bottom: 0;
    color: var(--mp-muted);
}

/* FAQ */

.em-mp__faq {
    display: grid;
    gap: 11px;
    max-width: 1050px;
}

.em-mp__faq details {
    overflow: hidden;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    background: var(--mp-surface);
}

.em-mp__faq summary {
    position: relative;
    padding: 20px 58px 20px 22px;
    color: var(--mp-text);
    cursor: pointer;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.4;
    list-style: none;
}

.em-mp__faq summary::-webkit-details-marker {
    display: none;
}

.em-mp__faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--mp-accent-soft);
    color: var(--mp-accent-dark);
    font-size: 21px;
    font-weight: 800;
}

.em-mp__faq details[open] summary::after {
    content: "−";
}

.em-mp__faq details p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--mp-muted);
}

/* Внутренние ссылки */

.em-mp__internal-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.em-mp__internal-links a {
    display: flex;
    min-height: 130px;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    padding: 21px;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    background: var(--mp-surface);
    color: var(--mp-text);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.em-mp__internal-links a:hover {
    transform: translateY(-4px);
    border-color: var(--mp-accent);
    box-shadow: var(--mp-shadow);
}

.em-mp__internal-links strong {
    font-size: 18px;
}

.em-mp__internal-links span {
    color: var(--mp-muted);
    font-size: 14px;
}

/* Финальный CTA */

.em-mp__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    margin-top: clamp(58px, 8vw, 102px);
    padding: clamp(31px, 6vw, 65px);
    border-radius: var(--mp-radius-lg);
    background:
        radial-gradient(
            circle at 88% 0%,
            rgba(245, 160, 0, 0.25),
            transparent 36%
        ),
        var(--mp-dark);
    color: #ffffff;
}

.em-mp__cta h2 {
    color: #ffffff;
}

.em-mp__cta .em-mp__eyebrow {
    color: #ffc34c;
}

.em-mp__cta-content p {
    max-width: 850px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
}

.em-mp__cta-actions {
    display: flex;
    min-width: 260px;
    flex-direction: column;
    gap: 10px;
}

.em-mp__cta-actions .em-mp__button {
    width: 100%;
}

.em-mp__cta-phone {
    padding: 8px;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    font-size: 16px;
    font-weight: 800;
}

.em-mp__cta-phone:hover {
    color: #ffffff;
}

/* Планшеты */

@media (max-width: 1100px) {

    .em-mp__hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .em-mp__hero-panel {
        max-width: 720px;
    }

    .em-mp__facts,
    .em-mp__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .em-mp__planning,
    .em-mp__norms,
    .em-mp__lighting,
    .em-mp__smart {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .em-mp__intro,
    .em-mp__section--kitchen,
    .em-mp__section--terrace {
        grid-template-columns: 1fr;
    }

    .em-mp__cta {
        grid-template-columns: 1fr;
    }

    .em-mp__cta-actions {
        max-width: 470px;
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .em-mp__cta-actions .em-mp__button {
        width: auto;
        flex: 1 1 190px;
    }

    .em-mp__cta-phone {
        width: 100%;
        text-align: left;
    }

}

/* Мобильные устройства */

@media (max-width: 760px) {

    .em-mp {
        font-size: 15px;
    }

    .em-mp h1 {
        font-size: 37px;
    }

    .em-mp h2 {
        font-size: 29px;
    }

    .em-mp__hero {
        gap: 26px;
        padding: 31px 21px;
        border-radius: 22px;
    }

    .em-mp__location {
        border-radius: 14px;
        line-height: 1.45;
    }

    .em-mp__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .em-mp__button {
        width: 100%;
    }

    .em-mp__hero-panel {
        padding: 21px;
        border-radius: 20px;
    }

    .em-mp__facts,
    .em-mp__cards,
    .em-mp__decision,
    .em-mp__services,
    .em-mp__panel-grid,
    .em-mp__network,
    .em-mp__lighting,
    .em-mp__smart,
    .em-mp__price-grid,
    .em-mp__norms,
    .em-mp__warranty,
    .em-mp__internal-links {
        grid-template-columns: 1fr;
    }

    .em-mp__nav {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 11px;
    }

    .em-mp__nav a {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 8px 9px;
        text-align: center;
    }

    .em-mp__section--dark,
    .em-mp__section--soft,
    .em-mp__section--kitchen,
    .em-mp__section--terrace,
    .em-mp__section--price,
    .em-mp__section--norms,
    .em-mp__section--links {
        margin-right: -3px;
        margin-left: -3px;
        padding: 27px 18px;
        border-radius: 22px;
    }

    .em-mp__service ul,
    .em-mp__kitchen-list ul,
    .em-mp__terrace-list ul {
        grid-template-columns: 1fr;
    }

    .em-mp__card {
        min-height: auto;
        padding: 21px;
    }

    .em-mp__steps li {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 13px;
        padding: 18px;
    }

    .em-mp__steps li > span {
        width: 44px;
        height: 44px;
        font-size: 12px;
    }

    .em-mp__cta {
        padding: 31px 21px;
        border-radius: 22px;
    }

    .em-mp__cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: none;
    }

    .em-mp__cta-actions .em-mp__button {
        width: 100%;
    }

    .em-mp__cta-phone {
        text-align: center;
    }

}

/* Узкие экраны */

@media (max-width: 430px) {

    .em-mp h1 {
        font-size: 34px;
    }

    .em-mp__nav {
        grid-template-columns: 1fr;
    }

    .em-mp__fact,
    .em-mp__service,
    .em-mp__card,
    .em-mp__note {
        padding: 19px;
    }

}

/* Отключение анимаций */

@media (prefers-reduced-motion: reduce) {

    .em-mp *,
    .em-mp *::before,
    .em-mp *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }

}/* End custom CSS */