@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/manrope-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
    --green: #2f8f46;
    --green-dark: #12372a;
    --lime: #8dc63f;
    --teal: #167b86;
    --ink: #183127;
    --muted: #607066;
    --line: #dbe6dd;
    --paper: #ffffff;
    --soft: #f2f7f1;
    --shadow: 0 18px 45px rgba(20, 55, 42, .16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Manrope", Arial, "Helvetica Neue", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topline { background: var(--green-dark); color: #eef8ee; font-size: 14px; }
.topgrid { min-height: 44px; display: flex; align-items: center; gap: 14px; justify-content: flex-end; }
.topphones { display: flex; align-items: center; gap: 10px; }
.toplink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 6px 11px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 6px;
    background: rgba(255,255,255,.07);
    color: #fff;
    font-weight: 800;
}
.toplink:before {
    content: "";
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    background: var(--lime);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.2c1.1.4 2.3.6 3.6.6a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.6 21 3 13.4 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.2.2 2.4.6 3.6a1 1 0 0 1-.2 1l-2.3 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.2c1.1.4 2.3.6 3.6.6a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.6 21 3 13.4 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.2.2 2.4.6 3.6a1 1 0 0 1-.2 1l-2.3 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.toplink:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(141,198,63,.42);
}
.worktime {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(141,198,63,.14);
    color: #d9efdf;
    font-weight: 700;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid rgba(47,143,70,.14);
    backdrop-filter: blur(14px);
    transition: box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(18,55,42,.12); }
.navrow { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.brand img { width: auto; height: 74px; object-fit: contain; flex: 0 0 auto; }
.brand-text { display: grid; width: 86px; flex: 0 0 86px; text-align: center; line-height: 1; letter-spacing: 0; }
.brand-text b { color: #20282b; font-size: 27px; font-weight: 900; letter-spacing: 0; }
.brand-text em { color: var(--green); font-size: 14px; font-style: normal; font-weight: 900; letter-spacing: 0; white-space: nowrap; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 26px; font-weight: 700; color: #243b2d; }
.main-nav a { position: relative; white-space: nowrap; }
.main-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.main-nav a:hover:after { transform: scaleX(1); }
.nav-cta, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta, .btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--teal));
    box-shadow: 0 12px 28px rgba(47,143,70,.24);
}
.btn.ghost { color: var(--green-dark); background: rgba(255,255,255,.88); border-color: rgba(255,255,255,.75); }
.nav-cta:hover, .btn:hover { transform: translateY(-2px); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--green-dark); }
.hero {
    position: relative;
    min-height: 650px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--green-dark);
}
.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18,55,42,.90), rgba(22,123,134,.48), rgba(18,55,42,.20)),
        url('../images/reg_images/001.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1.02); } to { transform: scale(1.09); } }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 680px) minmax(280px, 360px); align-items: end; gap: 56px; padding: 90px 0 70px; }
.eyebrow { display: block; margin: 0 0 12px; color: var(--lime); font-weight: 800; letter-spacing: 0; }
.hero h1, .page-hero h1 { margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.05; letter-spacing: 0; }
.hero p { margin: 22px 0 0; max-width: 620px; font-size: 20px; color: #e8f5ec; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-panel {
    padding: 26px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}
.hero-panel strong, .hero-panel a, .hero-panel span { display: block; }
.hero-panel strong { margin-bottom: 12px; color: #dff5df; }
.hero-panel a { font-size: 22px; font-weight: 800; margin-top: 6px; }
.hero-panel span { margin-top: 16px; color: #d7e8dc; }
.section { padding: 72px 0; }
.muted { background: var(--soft); }
.intro-band { padding: 34px 0; background: linear-gradient(90deg, #f4f9f3, #eef7f6); border-bottom: 1px solid var(--line); }
.featureline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.featureline div { padding: 22px 0; border-left: 3px solid var(--green); }
.featureline b, .featureline span { display: block; padding-left: 18px; }
.featureline b { font-size: 20px; }
.featureline span { color: var(--muted); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-head h2, .split h2, .content-area h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: 1.12; }
.section-head p, .split p { margin: 0; color: var(--muted); font-size: 18px; }
.home-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: stretch;
}
.home-intro__content {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,251,247,.94)),
        url('../images/reg_images/003.jpg') center/cover no-repeat;
    box-shadow: 0 12px 34px rgba(18,55,42,.08);
}
.home-intro__content h2 {
    max-width: 780px;
    margin: 0 0 18px;
    color: var(--green-dark);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
}
.home-intro__content p {
    max-width: 780px;
    margin: 0 0 16px;
    color: #40594a;
    font-size: 18px;
}
.home-intro__content p:last-child {
    margin-bottom: 0;
}
.home-intro__panel {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 28px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--green-dark), var(--teal));
    box-shadow: var(--shadow);
}
.home-intro__panel strong {
    margin-bottom: 4px;
    font-size: 22px;
    line-height: 1.2;
}
.home-intro__panel span {
    position: relative;
    padding-left: 24px;
    color: #e5f3e9;
}
.home-intro__panel span:before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lime);
}
.home-intro__panel .btn {
    margin-top: 12px;
    background: #fff;
    color: var(--green-dark);
    box-shadow: none;
}
.home-intro__features {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.home-intro__features div {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(18,55,42,.06);
}
.home-intro__features b,
.home-intro__features span {
    display: block;
}
.home-intro__features b {
    margin-bottom: 6px;
    color: var(--green-dark);
    font-size: 18px;
}
.home-intro__features span {
    color: var(--muted);
}
.service-strip {
    width: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--green) #e2eee4;
    cursor: grab;
    user-select: none;
}
.service-strip.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}
.service-strip::-webkit-scrollbar {
    height: 9px;
}
.service-strip::-webkit-scrollbar-track {
    background: #e2eee4;
}
.service-strip::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 999px;
}
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-card, .plain-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(18,55,42,.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-strip .service-card { flex: 0 0 25%; min-width: 25%; border-radius: 0; border-left: 0; border-right: 1px solid rgba(255,255,255,.4); }
.service-strip .service-card,
.service-strip .service-card img {
    -webkit-user-drag: none;
}
.service-card:hover, .plain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(47,143,70,.45); }
.service-image { height: 210px; background: #dce8de center/cover no-repeat; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.service-card:hover .service-image img { transform: scale(1.04); }
.service-image-1 { background-image: url('../images/reg_images/001.jpg'); }
.service-image-2 { background-image: url('../images/reg_images/002.jpg'); }
.service-image-3 { background-image: url('../images/reg_images/003.jpg'); }
.service-image-4 { background-image: url('../images/reg_images/004.jpg'); }
.service-image-5 { background-image: url('../images/reg_images/005.jpg'); }
.service-image-6 { background-image: url('../images/reg_images/006.jpg'); }
.service-card strong, .plain-card strong { padding: 22px 22px 8px; font-size: 21px; line-height: 1.2; }
.service-card em, .plain-card span { padding: 0 22px 22px; color: var(--muted); font-style: normal; }
.plain-card { min-height: 170px; padding-top: 10px; }
.faq-list {
    display: grid;
    gap: 14px;
}
.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 10px 28px rgba(18,55,42,.08);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
    border-color: rgba(47,143,70,.38);
    box-shadow: 0 16px 36px rgba(18,55,42,.12);
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    color: var(--green-dark);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary i {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: #edf7ee;
}
.faq-item summary i:before,
.faq-item summary i:after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 13px;
    height: 2px;
    border-radius: 2px;
    background: var(--green);
}
.faq-item summary i:after {
    transform: rotate(90deg);
    transition: transform .18s ease;
}
.faq-item[open] summary i:after {
    transform: rotate(0deg);
}
.faq-answer {
    padding: 0 26px 24px;
}
.faq-answer p {
    max-width: 860px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}
.split { display: grid; grid-template-columns: 360px 1fr; gap: 46px; align-items: start; }
.text-link { display: inline-flex; margin-top: 18px; color: var(--green); font-weight: 800; }
.region-cloud, .region-list, .link-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.region-cloud a, .region-list a, .link-grid a {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: #244634;
    font-weight: 700;
}
.page-hero {
    padding: 86px 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(18,55,42,.95), rgba(22,123,134,.82)),
        url('../images/reg_images/002.jpg') center/cover no-repeat;
}
.page-hero.compact { padding: 64px 0; }
.page-hero a { color: #fff; }
.service-hero { min-height: 360px; display: grid; align-items: end; background-size: cover; background-position: center; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 44px; align-items: start; }
.content-area {
    max-width: 860px;
    background: #fff;
}
.lead {
    position: relative;
    margin: 0 0 30px;
    padding: 22px 24px 22px 28px;
    border-left: 4px solid var(--teal);
    border-radius: 8px;
    background: linear-gradient(135deg, #f4faf7, #eef8f7);
    color: #2c4939;
    font-size: 19px;
    line-height: 1.65;
    box-shadow: 0 10px 26px rgba(18,55,42,.07);
}
.cms-content img { height: auto; }
.cms-content p { margin: 0 0 18px; }
.cms-content h2 {
    margin: 34px 0 16px;
    color: var(--green-dark);
    font-size: 28px;
    line-height: 1.22;
}
.cms-content h3 {
    margin: 28px 0 14px;
    color: var(--green-dark);
    font-size: 23px;
    line-height: 1.25;
}
.cms-content ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 28px;
    padding: 20px 22px;
    border-left: 4px solid var(--green);
    border-radius: 8px;
    background: linear-gradient(135deg, #f3faf4, #eef8f7);
    color: #244634;
    list-style: none;
}
.cms-content li {
    position: relative;
    padding-left: 26px;
}
.cms-content li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(22,123,134,.12);
}
.cta-line { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 42px; }
.side-nav {
    position: sticky;
    top: 118px;
    display: grid;
    gap: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}
.side-nav-group {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.side-nav-group-primary {
    background: linear-gradient(180deg, #eef8f0, #fff);
    border-color: rgba(47,143,70,.28);
}
.side-nav strong { margin: 0 0 4px; }
.side-nav-title {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 6px;
    background: var(--green-dark);
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: uppercase;
}
.side-nav a { padding: 9px 10px; border-radius: 6px; color: #33483b; }
.side-nav a.active, .side-nav a:hover { background: var(--soft); color: var(--green); box-shadow: 0 6px 16px rgba(18,55,42,.08); }
.side-nav-group-primary a.active, .side-nav-group-primary a:hover { background: #fff; }
.side-nav-region-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
}
.side-nav-region-link:before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 4px 4px 2px 2px;
    background:
        linear-gradient(var(--green), var(--green)) 5px 5px / 2px 3px no-repeat,
        linear-gradient(var(--green), var(--green)) 11px 5px / 2px 3px no-repeat,
        linear-gradient(var(--green), var(--green)) 5px 11px / 2px 3px no-repeat,
        linear-gradient(var(--green), var(--green)) 11px 11px / 2px 3px no-repeat,
        #e8f5ec;
    border: 1px solid rgba(47,143,70,.34);
}
.price-note, .price-table {
    display: grid;
    gap: 10px;
    margin: 24px 0;
    padding: 22px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f4f9f2, #eff8f7);
    border: 1px solid var(--line);
}
.price-table div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.price-table div:last-child { border-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 34px; }
.contact-panel, .form-shell {
    padding: 28px;
    border-radius: 8px;
    background: var(--soft);
    border: 1px solid var(--line);
}
.contact-panel strong, .contact-panel span { display: block; margin-bottom: 16px; }
.site-footer { padding: 48px 0 24px; background: var(--green-dark); color: #dcefe2; }
.footergrid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
.footerbrand { display: inline-flex; margin-bottom: 12px; color: #fff; font-size: 24px; font-weight: 800; }
.footer-nav, .footer-contacts { display: grid; gap: 9px; }
.site-footer strong { color: #fff; }
.footer-phone-list {
    display: grid;
    gap: 10px;
    margin-top: 2px;
}
.footer-nav a,
.footer-contact {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #dcefe2;
}
.footer-contacts .footer-contact {
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(255,255,255,.07);
}
.footer-phone-list a {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}
.footer-phone-list a:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(141,198,63,.42);
}
.footer-contact-map {
    margin-top: 4px;
    color: #c7ddce;
}
.footer-nav a:before,
.footer-contact:before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: var(--lime);
    opacity: .92;
}
.footer-nav a:before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.2 5.2a1 1 0 0 1 1.4 0l6.1 6.1a1 1 0 0 1 0 1.4l-6.1 6.1a1 1 0 1 1-1.4-1.4l4.4-4.4H4a1 1 0 1 1 0-2h13.6l-4.4-4.4a1 1 0 0 1 0-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.2 5.2a1 1 0 0 1 1.4 0l6.1 6.1a1 1 0 0 1 0 1.4l-6.1 6.1a1 1 0 1 1-1.4-1.4l4.4-4.4H4a1 1 0 1 1 0-2h13.6l-4.4-4.4a1 1 0 0 1 0-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.footer-contact-phone:before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.2c1.1.4 2.3.6 3.6.6a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.6 21 3 13.4 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.2.2 2.4.6 3.6a1 1 0 0 1-.2 1l-2.3 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.2c1.1.4 2.3.6 3.6.6a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.6 21 3 13.4 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.2.2 2.4.6 3.6a1 1 0 0 1-.2 1l-2.3 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.footer-contact-map:before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.16);
    color: #b9d3c2;
    font-size: 14px;
}
.footer-bottom a {
    color: #dcefe2;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-bottom a:hover {
    color: #bfe977;
}
.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    color: #fff;
    background: rgba(18,55,42,.96);
    box-shadow: 0 18px 50px rgba(18,55,42,.28);
}
.cookie-consent[hidden] {
    display: none;
}
.cookie-consent__text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 17px;
}
.cookie-consent__text p {
    margin: 0;
    color: #dcefe2;
    font-size: 14px;
    line-height: 1.5;
}
.cookie-consent__text a {
    color: #bfe977;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-consent__button {
    min-height: 42px;
    padding: 10px 18px;
    border: 0;
    border-radius: 6px;
    color: var(--green-dark);
    background: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.cookie-consent__button:hover {
    background: #e8f5ec;
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
    .navrow { grid-template-columns: auto auto; justify-content: space-between; }
    .menu-toggle { display: block; }
    .main-nav {
        grid-column: 1 / -1;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 0 18px;
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 12px 0; border-top: 1px solid var(--line); }
    .nav-cta { display: none; }
    .hero-grid, .split, .content-layout, .contact-grid, .footergrid, .home-intro { grid-template-columns: 1fr; }
    .home-intro__features { grid-template-columns: 1fr; }
    .service-strip .service-card { flex-basis: 50%; min-width: 50%; }
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .side-nav { position: static; }
}
@media (max-width: 640px) {
    .topgrid { justify-content: flex-start; flex-wrap: wrap; gap: 10px; padding: 8px 0; }
    .brand img { width: auto; height: 58px; }
    .brand { gap: 7px; }
    .brand-text { width: 70px; flex-basis: 70px; }
    .brand-text b { font-size: 22px; }
    .brand-text em { font-size: 11px; }
    .hero { min-height: 610px; }
    .hero h1, .page-hero h1 { font-size: 36px; }
    .hero p { font-size: 18px; }
    .hero-grid { padding: 58px 0 44px; gap: 28px; }
    .section { padding: 50px 0; }
    .section-head { display: block; }
    .featureline, .card-grid { grid-template-columns: 1fr; }
    .service-strip .service-card { flex-basis: min(82%, 320px); min-width: min(82%, 320px); }
    .service-image { height: 190px; }
    .price-table div { display: block; }
    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        grid-template-columns: 1fr;
        padding: 16px;
    }
    .cookie-consent__button {
        width: 100%;
    }
}.form-shell {
    max-width: 960px;
    box-shadow: 0 14px 36px rgba(18,55,42,.08);
}
.form-shell .three-fourth {
    width: 100%;
}
.form-shell form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}
.form-shell .one-half,
.form-shell .f-row {
    width: auto;
    margin: 0;
}
.form-shell label {
    display: block;
    margin: 0 0 7px;
    color: var(--green-dark);
    font-weight: 800;
    line-height: 1.3;
}
.form-shell label b {
    color: #d0382c;
    margin-left: 3px;
}
.form-shell input[type="text"],
.form-shell input[type="email"],
.form-shell input[type="tel"],
.form-shell textarea,
.form-shell select {
    width: 100% !important;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid #c8d9cd;
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.form-shell textarea {
    min-height: 122px;
    resize: vertical;
}
.form-shell input:focus,
.form-shell textarea:focus,
.form-shell select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(47,143,70,.14);
}
.form-shell .one-half:nth-of-type(5) {
    grid-column: 1 / -1;
}
.form-shell .f-row {
    grid-column: 1 / -1;
}
.form-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 11px;
    margin: 4px 0 0 !important;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: #40594a;
    font-size: 14px;
    font-weight: 600 !important;
    line-height: 1.45;
}
.form-consent input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    flex: 0 0 18px;
}
.form-consent a {
    color: var(--green);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.form-shell input[type="submit"],
.form-shell .btn.color {
    width: auto !important;
    min-width: 168px;
    min-height: 48px;
    padding: 12px 24px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--teal));
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(47,143,70,.22);
}
.alert {
    margin: 0 0 18px;
    padding: 13px 15px;
    border-radius: 6px;
    font-weight: 700;
}
.alert-success {
    color: #164527;
    background: #dff3e4;
    border: 1px solid #b9dfc3;
}
.alert-danger {
    color: #7b1f18;
    background: #fde5e1;
    border: 1px solid #f3b9af;
}
@media (max-width: 640px) {
    .form-shell {
        padding: 18px;
    }
    .form-shell form {
        grid-template-columns: 1fr;
    }
}
.region-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 34px;
    align-items: center;
    margin-bottom: 30px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, #f7fbf6, #eef8f6);
}
.region-overview h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.12;
}
.region-overview p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}
.region-stats {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3px 12px;
    align-items: baseline;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(18,55,42,.08);
}
.region-stats strong {
    color: var(--green);
    font-size: 34px;
    line-height: 1;
}
.region-stats span {
    color: var(--muted);
}
.region-card-grid {
    align-items: stretch;
}
.region-card {
    position: relative;
    min-height: 210px;
}
.region-card-image {
    display: block;
    height: 180px;
    margin: 0 0 18px;
    overflow: hidden;
    background: #dce8de;
}
.region-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}
.region-card:hover .region-card-image img {
    transform: scale(1.04);
}
.region-card:before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--teal));
}
.region-card-kicker {
    padding: 22px 22px 0 !important;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.region-detail-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 38px;
    align-items: start;
    margin-bottom: 34px;
}
.region-detail-head > div {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18,55,42,.06);
}
.region-detail-head aside {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--green-dark), var(--teal));
    box-shadow: var(--shadow);
}
.region-detail-head aside strong {
    font-size: 42px;
    line-height: 1;
}
.region-detail-head aside span {
    color: #e5f3e9;
}
.region-services-section {
    margin-bottom: 46px;
}
.small-head {
    margin-bottom: 18px;
}
.small-head h2 {
    font-size: 30px;
}
.region-city-page {
    display: grid;
    gap: 24px;
}
.city-request-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 30px;
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(18,55,42,.94), rgba(22,123,134,.78)),
        url('../images/reg_images/004.jpg') center/cover no-repeat;
    box-shadow: var(--shadow);
}
.city-request-card h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.12;
}
.city-request-card p {
    max-width: 680px;
    margin: 0;
    color: #e5f3e9;
    font-size: 18px;
}
.city-request-card .btn {
    background: #fff;
    color: var(--green-dark);
    box-shadow: none;
}
.city-services-block,
.city-price-block,
.city-text-block {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18,55,42,.06);
}
.city-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.city-section-head h2,
.city-price-block h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1.14;
}
.city-section-head p,
.city-price-block p {
    max-width: 380px;
    margin: 0;
    color: var(--muted);
}
.city-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.city-service-grid a {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    align-items: start;
    min-height: 92px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, #fff, #f3faf4);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.city-service-grid a:hover {
    transform: translateY(-2px);
    border-color: rgba(47,143,70,.35);
    box-shadow: 0 10px 24px rgba(18,55,42,.08);
}
.city-service-grid span {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--teal));
    font-size: 13px;
    font-weight: 800;
}
.city-service-grid strong {
    color: var(--green-dark);
    line-height: 1.25;
}
.city-service-grid em {
    color: var(--muted);
    font-style: normal;
    font-size: 14px;
}
.city-price-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #f7fbf6, #eef8f6);
}
.city-price-list {
    display: grid;
    gap: 12px;
}
.city-price-list span {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 14px;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(18,55,42,.07);
}
.city-price-list b {
    grid-row: 1 / span 2;
    align-self: center;
    color: var(--green);
    font-size: 28px;
    line-height: 1;
}
.city-price-list strong {
    color: var(--green-dark);
    font-size: 20px;
}
.city-price-list em {
    color: var(--muted);
    font-style: normal;
}
.city-text-block {
    color: #40594a;
}
.city-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 18px;
    align-items: center;
    margin-bottom: 28px;
    padding: 22px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--green-dark), var(--teal));
    box-shadow: var(--shadow);
}
.city-banner span {
    color: #d9efe2;
    font-weight: 700;
}
.city-banner strong {
    font-size: 30px;
    line-height: 1.1;
}
.city-banner .btn {
    grid-row: 1 / span 2;
    grid-column: 2;
    background: #fff;
    color: var(--green-dark);
    box-shadow: none;
}
.service-link-grid a {
    background: linear-gradient(135deg, #fff, #f3faf4);
}
.legal-page {
    max-width: 920px;
}
.legal-content {
    max-width: none;
}
.documents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.document-card {
    position: relative;
    min-height: 190px;
    padding: 22px;
}
.document-card .doc-mark {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--teal));
    font-weight: 800;
}
.document-card strong {
    padding: 0;
}
.document-card em {
    margin-top: auto;
    padding: 14px 0 0;
    color: var(--green);
    font-style: normal;
    font-weight: 800;
}
@media (max-width: 980px) {
    .region-overview,
    .region-detail-head,
    .city-request-card,
    .city-price-block,
    .city-banner {
        grid-template-columns: 1fr;
    }
    .city-service-grid {
        grid-template-columns: 1fr;
    }
    .city-request-card .btn {
        justify-self: start;
    }
    .city-banner .btn {
        grid-row: auto;
        grid-column: auto;
        justify-self: start;
    }
}
@media (max-width: 640px) {
    .region-overview,
    .region-detail-head > div,
    .region-detail-head aside,
    .city-request-card,
    .city-services-block,
    .city-price-block,
    .city-text-block,
    .city-banner {
        padding: 18px;
    }
    .documents-grid {
        grid-template-columns: 1fr;
    }
}
.price-intro,
.contact-hero,
.work-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    margin-bottom: 28px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, #f7fbf6, #eef8f6);
}
.price-intro h2,
.contact-main h2,
.work-main h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.1;
}
.price-intro p,
.contact-main p,
.work-main p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.tariff-card,
.contact-tile,
.production-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18,55,42,.08);
}
.tariff-card {
    min-height: 260px;
    padding: 24px;
}
.tariff-card span {
    color: var(--green);
    font-weight: 800;
}
.tariff-card strong {
    margin-top: 12px;
    font-size: 44px;
    line-height: 1;
}
.tariff-card b {
    margin-top: 14px;
    font-size: 24px;
}
.tariff-card p {
    margin: auto 0 0;
    color: var(--muted);
}
.tariff-card.featured {
    color: #fff;
    background: linear-gradient(135deg, var(--green-dark), var(--teal));
    box-shadow: var(--shadow);
}
.tariff-card.featured span,
.tariff-card.featured p {
    color: #e2f3e7;
}
.note-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 22px 24px;
    border-radius: 8px;
    background: var(--soft);
    border: 1px solid var(--line);
}
.price-factors {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    margin-top: 28px;
    align-items: stretch;
}
.price-factors__head {
    grid-column: 1;
    padding: 30px 32px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.95), rgba(242,247,241,.94)),
        url('../images/reg_images/002.jpg') center/cover no-repeat;
    box-shadow: 0 12px 30px rgba(18,55,42,.07);
}
.price-factors__head h2 {
    max-width: 720px;
    margin: 0 0 14px;
    color: var(--green-dark);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.12;
}
.price-factors__head p {
    max-width: 760px;
    margin: 0;
    color: #40594a;
    font-size: 18px;
}
.price-factors__grid {
    grid-column: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.price-factors__grid article {
    display: grid;
    gap: 8px;
    min-height: 180px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(18,55,42,.06);
}
.price-factors__grid b {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--teal));
    font-size: 14px;
}
.price-factors__grid strong {
    color: var(--green-dark);
    font-size: 20px;
}
.price-factors__grid span {
    color: var(--muted);
}
.price-factors__aside {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 28px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--green-dark), var(--teal));
    box-shadow: var(--shadow);
}
.price-factors__aside strong {
    margin-bottom: 4px;
    font-size: 24px;
    line-height: 1.2;
}
.price-factors__aside span {
    position: relative;
    padding-left: 24px;
    color: #e5f3e9;
}
.price-factors__aside span:before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lime);
}
.price-factors__aside .btn {
    margin-top: 12px;
    background: #fff;
    color: var(--green-dark);
    box-shadow: none;
}
.contact-hero {
    grid-template-columns: minmax(0, 1fr) 340px;
}
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.btn.bordered {
    border-color: var(--line);
    background: #fff;
}
.contact-aside {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18,55,42,.08);
}
.contact-aside strong {
    font-size: 22px;
}
.contact-aside span {
    color: var(--muted);
}
.contact-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.contact-tile {
    min-height: 130px;
    padding: 22px;
}
.contact-tile b {
    color: var(--green);
    margin-bottom: 12px;
}
.contact-tile a,
.contact-tile span {
    font-size: 20px;
    font-weight: 800;
}
.work-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
}
.work-main .btn {
    margin-top: 24px;
}
.work-points {
    display: grid;
    gap: 12px;
}
.work-points span {
    display: block;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 800;
}
.production-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.production-card {
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}
.production-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.production-card strong {
    padding: 22px 22px 8px;
    font-size: 26px;
}
.production-card p {
    padding: 0 22px 24px;
    margin: 0;
    color: var(--muted);
}
@media (max-width: 980px) {
    .price-intro,
    .price-factors,
    .contact-hero,
    .work-layout,
    .note-band {
        grid-template-columns: 1fr;
    }
    .price-factors__head,
    .price-factors__grid,
    .price-factors__aside {
        grid-column: auto;
        grid-row: auto;
    }
    .tariffs-grid,
    .price-factors__grid,
    .contact-tile-grid,
    .production-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .price-intro,
    .price-factors__head,
    .price-factors__aside,
    .contact-hero,
    .work-layout,
    .note-band {
        padding: 18px;
    }
    .contact-actions {
        display: grid;
    }
    .tariff-card strong {
        font-size: 38px;
    }
}
