:root {
    --accent: #99c03b;
    --accent-dark: #86ad2e;
    --text: #202126;
    --muted: rgba(32, 33, 38, 0.82);
    --white: #ffffff;
    --menu-bg: rgba(255, 255, 255, 0.98);
    --menu-side: #f4f4f2;
    --border: rgba(32, 33, 38, 0.08);
    --shadow: 0 18px 40px rgba(32, 33, 38, 0.14);
    --shadow-soft: 0 10px 24px rgba(32, 33, 38, 0.12);
    --container: 1680px;
    --header-height: 105px;
    --font: "Onest", sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button,
textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
}

a,
button,
input,
img {
    transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    font-weight: normal;
}

a {
    text-decoration: none;
    outline: none;
    color: unset;
}

* {
    outline: none !important;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style-type: none;
    outline: none;
}

p {
    padding: 0;
    margin: 0;
}

form {
    margin: 0;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }
}

.page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 16px 0;
    background: #fff;
    transition: padding 0.25s ease;
}

.header .container {
    max-width: 90%;
}

.header__inner {
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
    border-radius: 22px;
    border: 1px solid transparent;
}

.header.is-sticky {
    padding: 10px 0;
}

.header.is-sticky .header__inner {
    background: rgba(255, 255, 255, 0.92);
}

.header__bar {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 72px;
}

.logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.logo__mark {
    position: relative;
    line-height: 0.86;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent);
    text-transform: uppercase;
}

.logo__mark img {
   max-height: 65px;
}

.logo__mark span {
    display: block;
    font-size: 22px;
}

.logo__mark span+span {
    font-size: 17px;
    margin-top: 4px;
}

.logo__leaf {
    position: absolute;
    right: -1px;
    top: 2px;
    width: 34px;
    height: 20px;
}

.logo__leaf::before,
.logo__leaf::after {
    content: "";
    position: absolute;
    background: var(--accent);
    border-radius: 100% 0 100% 0;
    transform: rotate(28deg);
}

.logo__leaf::before {
    width: 16px;
    height: 12px;
    right: 13px;
    top: 0;
}

.logo__leaf::after {
    width: 18px;
    height: 14px;
    right: 0;
    top: 6px;
}

.nav {
    display: flex;
    justify-content: center;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu>li {
    position: relative;
}

.menu>li>a,
.menu>li>button {
    border: 0;
    background: transparent;
    color: var(--text);
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease;
    white-space: nowrap;
}

.menu>li:hover>a,
.menu>li:hover>button,
.menu>li:focus-within>a,
.menu>li:focus-within>button,
.menu>li.is-open>a,
.menu>li.is-open>button {
    background: rgba(156, 196, 58, 0.12);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 15px;
    font-weight: 700;
    padding: 0 10px;
    white-space: nowrap;
}

.header__phone svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex: 0 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 15px 25px;
    border-radius: 999px;
    cursor: pointer;
    text-align: center;
    transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--accent {
    height: 44px;
    padding: 0 22px;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
}

.btn--accent:hover {
    background: var(--accent);
}

.menu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    z-index: 40;
    padding-top: 14px;
}

.menu>li:hover>.menu-dropdown,
.menu>li:focus-within>.menu-dropdown,
.menu>li.is-open>.menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.menu-dropdown--area {
    left: 0;
    transform: translateX(0) translateY(8px);
}

.menu>li:hover>.menu-dropdown--area,
.menu>li:focus-within>.menu-dropdown--area,
.menu>li.is-open>.menu-dropdown--area {
    transform: translateX(0) translateY(0);
}

.menu-dropdown__box {
    background: var(--menu-bg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(32, 33, 38, 0.06);
    min-width: 286px;
}

.services-level-2,
.area-list,
.services-level-3 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-level-2>li,
.services-level-3>li {
    position: relative;
}

.services-level-2>li>a,
.services-level-2>li>button,
.services-level-3>li>a,
.area-list a {
    width: 100%;
    min-height: 46px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 20px;
    text-align: left;
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.22s ease;
    white-space: nowrap;
}

.services-level-3>li>a,
.area-list a {
    font-size: 18px;
    min-height: 44px;
}

.services-level-2>li:hover>a,
.services-level-2>li:hover>button,
.services-level-2>li:focus-within>a,
.services-level-2>li:focus-within>button,
.services-level-3>li:hover>a,
.services-level-3>li:focus-within>a,
.area-list a:hover,
.area-list a:focus {
    background: rgba(156, 196, 58, 0.12);
}


.has-dropdown>a .sub-arrow,
.mobile-item>.mobile-button .sub-arrow,
.mobile-subitem>.mobile-subbutton .sub-arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 0px;
    position: relative;
    flex: 0 0 10px;
    font-size: 0;
    line-height: 0;
    vertical-align: middle;
}

.has-dropdown>a .sub-arrow::before,
.mobile-item>.mobile-button .sub-arrow::before,
.mobile-subitem>.mobile-subbutton .sub-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-50%, -65%) rotate(45deg);
    transition: transform .28s ease;
    transform-origin: center;
}


.has-dropdown.is-open>a .sub-arrow::before,
.mobile-item.is-open>.mobile-button .sub-arrow::before,
.mobile-subitem.is-open>.mobile-subbutton .sub-arrow::before {
    transform: translate(-50%, -35%) rotate(-135deg);
}

.services-level-2>li>button .submenu-arrow,
.services-level-2>li>a .submenu-arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    position: relative;
    flex: 0 0 10px;
    font-size: 0;
    line-height: 0;
    vertical-align: middle;
}

.services-level-2>li>button .submenu-arrow::before,
.services-level-2>li>a .submenu-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-65%, -50%) rotate(-45deg);
    transform-origin: center;
}

.services-flyout {
    position: absolute;
    top: 0px;
    left: 100%;
    padding-left: 5px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    z-index: 45;
}

.services-level-2>li:hover>.services-flyout,
.services-level-2>li:focus-within>.services-flyout,
.services-level-3>li:hover>.services-flyout,
.services-level-3>li:focus-within>.services-flyout {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 0;
    background: rgba(32, 33, 38, 0.08);
    display: none;
    padding: 0;
    cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 2px;
    background-color: #222;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
    content: '';
    display: block;
    transition: 0.2s;
}

.mobile-toggle span::before {
    transform: translateY(-5px);
}

.mobile-toggle span::after {
    transform: translateY(5px);
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 21, 24, 0.26);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 220;
}

.mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(100%, 370px);
    background: rgb(255 255 255 / 100%);
    box-shadow: -14px 0 40px rgba(32, 33, 38, 0.16);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 230;
    padding: 24px 22px 28px;
    overflow-y: auto;
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 0;
    background: rgba(32, 33, 38, 0.08);
    position: relative;
    cursor: pointer;
    flex: 0 0 auto;
}

.mobile-close::before,
.mobile-close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 1px;
    border-radius: 999px;
    background: #000000;
    transform-origin: center;
}

.mobile-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu,
.mobile-submenu,
.mobile-third,
.mobile-fourth {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu>li {
    border-bottom: 1px solid var(--border);
}

.mobile-link,
.mobile-button,
.mobile-subbutton,
.mobile-thirdbutton,
.mobile-sublink,
.mobile-third a,
.mobile-fourth a {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.mobile-subbutton,
.mobile-thirdbutton,
.mobile-sublink,
.mobile-third a,
.mobile-fourth a {
    min-height: 46px;
    font-size: 16px;
    font-weight: 500;
}

.mobile-fourth a {
    font-size: 15px;
    color: rgba(32, 33, 38, 0.76);
}

.mobile-submenu,
.mobile-third,
.mobile-fourth {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.mobile-item.is-open>.mobile-submenu,
.mobile-subitem.is-open>.mobile-third,
.mobile-thirditem.is-open>.mobile-fourth {
    max-height: 1200px;
}

.mobile-submenu {
    padding-left: 18px;
}

.mobile-third,
.mobile-fourth {
    padding-left: 16px;
}

.mobile-nav__footer {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.mobile-nav__phone {
    color: var(--accent);
    font-size: 18px;
    font-weight: 800;
}

.field {
    height: 45px;
    border: 1px solid rgba(32, 33, 38, 0.14);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 0 16px;
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field::placeholder {
    color: #8f939c;
}

.field:focus {
    border-color: rgba(156, 196, 58, 0.6);
    box-shadow: 0 0 0 4px rgba(156, 196, 58, 0.14);
    background: #ffffff;
}

.field--phone {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.btn--estimate {
    height: 54px;
    background: var(--accent);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 1260px) {
    .header__bar {
        grid-template-columns: 180px 1fr auto;
    }

    .menu>li>a,
    .menu>li>button {
        padding: 0 12px;
        font-size: 14px;
    }

}

@media (max-width: 1080px) {
    :root {
        --header-height: 92px;
    }

    .header {
        padding: 14px 0;
    }

    .header.is-sticky {
        padding: 8px 0;
    }

    .header__bar {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        min-height: 64px;
    }

    .nav,
    .header__phone {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .header__actions {
        justify-self: end;
        justify-content: flex-end;
    }

    .btn--accent {
        height: 42px;
        padding: 0 16px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 82px;
    }

    .header {
        padding: 12px 0 8px;
    }

    .header .container {
        max-width: 100%;
    }

    .header.is-sticky {
        padding: 6px 0;
    }

    .header__bar {
        grid-template-columns: 1fr auto auto;
        align-items: center;
        min-height: 52px;
    }

    .header__inner {
        border-radius: 18px;
    }
    

.logo__mark img {
   max-height: 50px;
}


    .logo__mark span {
        font-size: 20px;
    }

    .logo__mark span+span {
        font-size: 16px;
    }

    .header__actions {
        gap: 8px;
    }

    .btn--accent {
        height: 34px;
        padding: 0 14px;
        font-size: 13px;
    }

    .mobile-toggle {
        width: 34px;
        height: 34px;
    }

    .mobile-nav {
        width: 100%;
        padding: 18px 18px 24px;
    }

    .field,
    .btn--estimate {
        height: 44px;
    }

    .btn--estimate,
    .btn--call {
        font-size: 16px;
    }

    .field--phone {
        grid-template-columns: 46px 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}


.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 96px 0 70px;
    overflow: hidden;
    background: #f5f8ee;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.9) 35%,
            rgba(255, 255, 255, 0.58) 62%,
            rgba(255, 255, 255, 0.12) 100%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.2) 52%,
            rgba(245, 248, 238, 0.92) 100%
        );
}

.hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__content {
    max-width: 760px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 36px;
    padding: 0 15px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: var(--accent);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(151, 195, 48, 0.24);
    box-shadow: 0 12px 30px rgba(32, 33, 38, 0.07);
    backdrop-filter: blur(10px);
}

.hero__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(151, 195, 48, 0.14);
}

.hero__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(42px, 5.2vw, 74px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.065em;
}

.hero__title .accent {
    position: relative;
    color: var(--accent);
    white-space: nowrap;
}

.hero__lead {
    max-width: 600px;
    margin: 24px 0 0;
    color: var(--text);
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
}

.hero__text {
    position: relative;
    max-width: 640px;
    min-height: 84px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.62;
}

.hero__lead .accent {
    color: var(--accent);
    font-weight: 600;
}

.hero__form-actions {
    max-width: 760px;
    margin-top: 30px;
}

.hero__form {
    width: 100%;
    min-width: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(151, 195, 48, 0.22);
    box-shadow: 0 20px 58px rgba(32, 33, 38, 0.1);
    backdrop-filter: blur(14px);
}

.hero .field {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    color: var(--text);
    font-size: 15px;
    font-weight: 650;
    background: #fff;
    border: 1px solid rgba(32, 33, 38, 0.1);
    outline: none;
}

.hero .field:focus {
    border-color: rgba(151, 195, 48, 0.85);
    box-shadow: 0 0 0 4px rgba(151, 195, 48, 0.14);
}

.hero__buttons {
    margin: 0;
}

.hero .btn--estimate {
    white-space: nowrap;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(151, 195, 48, 0.28);
}

.btn--call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 48px;
    padding: 0 22px;
    margin-top: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--accent);
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    border: 1px solid rgba(32, 33, 38, 0.09);
    box-shadow: 0 12px 30px rgba(32, 33, 38, 0.08);
    backdrop-filter: blur(10px);
    transition:
        transform .22s ease,
        background .22s ease,
        color .22s ease;
}

.btn--call:hover {
    transform: translateY(-2px);
    background: var(--text);
    color: #fff;
}

.rating {
    position: absolute;
    right: clamp(18px, 3vw, 54px);
    top: 54px;
    z-index: 2;
}

.rating__title {
    color: var(--text);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.rating__stars {
    display: flex;
    gap: 2px;
    margin-top: 8px;
}

.rating__stars img {
    width: 19px;
    height: 19px;
}

.rating__meta {
    margin-top: 8px;
    color: rgba(32, 33, 38, 0.68);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.rating__google {
    margin-top: 8px;
}

.rating__google img {
    display: block;
    height: 24px;
    width: auto;
}

@media (max-width: 1260px) {
    .hero {
        min-height: 700px;
    }

    .rating {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 92px 0 64px;
    }

    .hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.94) 0%,
                rgba(255, 255, 255, 0.76) 52%,
                rgba(245, 248, 238, 0.96) 100%
            );
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__title {
        font-size: 44px;
    }

    .hero__form {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .hero .btn--estimate {
        width: 100%;
    }

    .btn--call {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 35px 0 50px;
    }

    .hero__title {
        font-size: 36px;
        line-height: 1.05;
        letter-spacing: -0.045em;
    }

    .hero__title .accent {
        white-space: normal;
    }

    .hero__title .accent::after {
        bottom: 2px;
        height: 8px;
    }

    .hero__lead {
        margin-top: 18px;
        font-size: 17px;
    }
    
        .hero__text {
        margin-top: 16px;
        min-height: 124px;
        font-size: 16px;
        line-height: 1.55;
    }

    .hero__form-actions {
        margin-top: 24px;
    }

    .hero .field {
        height: 50px;
        border-radius: 14px;
    }

    .hero .btn--estimate,
    .btn--call {
        min-height: 50px;
        font-size: 14px;
    }
}

.offer-section {
    position: relative;
    padding: 120px 0 130px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(151, 195, 48, 0.16) 0, rgba(151, 195, 48, 0) 34%),
        radial-gradient(circle at 92% 82%, rgba(151, 195, 48, 0.14) 0, rgba(151, 195, 48, 0) 32%),
        linear-gradient(180deg, #ffffff 0%, #f5f8ee 100%);
}

.offer-section::before,
.offer-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
}

.offer-section::before {
    width: 360px;
    height: 360px;
    left: -140px;
    top: 90px;
    background: rgba(151, 195, 48, 0.12);
    filter: blur(24px);
}

.offer-section::after {
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: 40px;
    background: rgba(151, 195, 48, 0.13);
    filter: blur(28px);
}

.offer-section__head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 58px;
}

.offer-section__title {
    position: relative;
    display: inline-block;
    margin: 0;
    color: var(--text);
   font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.offer-section__title span {
    position: relative;
    color: var(--accent);
}

.offer-section__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    margin: 0 auto;
}

.offer-card {
    min-width: 0;
}

.offer-card__link {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 250, 240, 0.92) 100%);
    border: 1px solid rgba(151, 195, 48, 0.38);
    box-shadow: 0 18px 50px rgba(32, 33, 38, 0.08);
    text-decoration: none;
    isolation: isolate;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.offer-card__link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(151, 195, 48, 0.16) 0%,
        rgba(151, 195, 48, 0) 42%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.offer-card__link::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 4;
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 50%;
    background-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17L17 7M17 7H8M17 7V16' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
    box-shadow: 0 12px 28px rgba(151, 195, 48, 0.34);
    opacity: 0;
    transform: translate(8px, -8px) scale(0.86);
    transition:
        opacity .35s ease,
        transform .35s ease;
}

.offer-card__link:hover {
    transform: translateY(-10px);
    border-color: rgba(151, 195, 48, 0.9);
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(32, 33, 38, 0.15);
}

.offer-card__link:hover::before {
    opacity: 1;
}

.offer-card__link:hover::after {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.offer-card__media {
    position: relative;
    aspect-ratio: 1.12 / 1;
    overflow: hidden;
    background: #eef1e6;
}

.offer-card__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.18) 100%),
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.45) 0, rgba(255, 255, 255, 0) 30%);
    opacity: .55;
    pointer-events: none;
}

.offer-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition:
        transform .65s ease,
        filter .65s ease;
}

.offer-card__link:hover .offer-card__media img {
    transform: scale(1.09);
    filter: saturate(1.1) contrast(1.04);
}

.offer-card__body {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 20px 22px;
}

.offer-card__body::before {
    content: "";
    width: 46px;
    height: 4px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 6px 18px rgba(151, 195, 48, 0.34);
}

.offer-card__title {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 23px;
    line-height: 1.16;
    font-weight: 700;
    letter-spacing: -0.035em;
    transition: color .3s ease;
}

.offer-card__link:hover .offer-card__title {
    color: var(--accent);
}

.offer-card__text {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.offer-section__actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

@media (max-width: 1199px) {
    .offer-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 880px;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .offer-section {
        padding: 90px 0 100px;
    }

    .offer-section__head {
        margin-bottom: 42px;
    }

    .offer-section__grid {
        gap: 22px;
        max-width: 760px;
    }

    .offer-card__link {
        border-radius: 26px;
    }

    .offer-card__body {
        padding: 22px 18px 20px;
    }

    .offer-card__title {
        font-size: 22px;
    }

    .offer-card__text {
        font-size: 16px;
    }

    .offer-section__actions {
        margin-top: 44px;
    }
}

@media (max-width: 767px) {
    .offer-section {
        padding: 70px 0 80px;
    }

    .offer-section::before {
        width: 260px;
        height: 260px;
        left: -150px;
        top: 120px;
    }

    .offer-section::after {
        width: 300px;
        height: 300px;
        right: -170px;
        bottom: 80px;
    }

    .offer-section__head {
        margin-bottom: 30px;
    }

    .offer-section__title {
        font-size: 34px;
        line-height: 1.12;
    }

    .offer-section__title span::after {
        bottom: 2px;
        height: 8px;
    }

    .offer-section__grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 100%;
    }

    .offer-card__link {
        border-radius: 22px;
        box-shadow: 0 14px 36px rgba(32, 33, 38, 0.09);
    }

    .offer-card__link:hover {
        transform: translateY(-5px);
    }

    .offer-card__link::after {
        width: 38px;
        height: 38px;
        right: 14px;
        top: 14px;
        font-size: 20px;
    }

    .offer-card__media {
        aspect-ratio: 1.38 / 1;
    }

    .offer-card__body {
        padding: 20px 16px 18px;
    }

    .offer-card__body::before {
        width: 40px;
        height: 4px;
        margin-bottom: 14px;
    }

    .offer-card__title {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .offer-card__text {
        font-size: 16px;
        line-height: 1.5;
    }

    .offer-section__actions {
        margin-top: 32px;
    }
}

.story-video {
    padding: 110px 0 120px;
}

.story-video__head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.story-video__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(156, 196, 58, 0.12);
    color: var(--accent);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.story-video__title {
    margin: 0;
    color: var(--text);
        font-size: clamp(36px, 4vw, 58px);
    line-height: 1.2;
    font-weight: 700;
}

.story-video__title span {
    color: var(--accent);
}

.story-video__wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.story-video__frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.story-video__frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
}


.story-video__frame iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.story-video__frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}


@media (max-width: 900px) {
    .story-video {
        padding: 90px 0 100px;
    }

    .story-video__head {
        margin-bottom: 34px;
    }

    .story-video__title {
        font-size: 42px;
    }

    .story-video__frame {
        border-radius: 24px;
    }
}

@media (max-width: 767px) {
    .story-video {
        padding: 70px 0 80px;
    }

    .story-video__head {
        margin-bottom: 26px;
    }

    .story-video__eyebrow {
        margin-bottom: 12px;
        padding: 7px 12px;
        font-size: 12px;
    }

    .story-video__title {
        font-size: 32px;
    }

    .story-video__frame {
        border-radius: 18px;
    }
}


.eco-solutions {
    position: relative;
    padding: 120px 0 130px;
    overflow: hidden;
}

.eco-solutions .container {
    position: relative;
    z-index: 1;
}

.eco-solutions__wrap {
    position: relative;
    padding: 56px;
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.68) 100%);
    border: 1px solid rgba(151, 195, 48, 0.2);
    box-shadow: 0 28px 90px rgba(32, 33, 38, 0.08);
    overflow: hidden;
}

.eco-solutions__wrap::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(151, 195, 48, 0.12);
    pointer-events: none;
}

.eco-solutions__head {
    max-width: 980px;
    margin-bottom: 42px;
}

.eco-solutions__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: var(--accent);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    background: rgba(151, 195, 48, 0.12);
    border: 1px solid rgba(151, 195, 48, 0.22);
}

.eco-solutions__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(151, 195, 48, 0.14);
}

.eco-solutions__title {
    margin: 0;
    max-width: 980px;
    color: var(--text);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.07;
    font-weight: 600;
    letter-spacing: -0.055em;
}

.eco-solutions__title span {
    position: relative;
    color: var(--accent);
    white-space: nowrap;
}

.eco-solutions__title span::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: 5px;
    z-index: -1;
    height: 12px;
    border-radius: 999px;
    background: rgba(151, 195, 48, 0.2);
}

.eco-solutions__body {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    gap: 44px;
    align-items: start;
}

.eco-solutions__text {
    max-width: 640px;
}

.eco-solutions__text p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.eco-solutions__text p + p {
    margin-top: 18px;
}

.eco-solutions__button {
    margin-top: 30px;
    min-width: 190px;
}

.eco-solutions__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.eco-solutions__card {
    position: relative;
    min-width: 0;
    min-height: 210px;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(151, 195, 48, 0.22);
    box-shadow: 0 18px 52px rgba(32, 33, 38, 0.07);
    overflow: hidden;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.eco-solutions__card:hover {
    transform: translateY(-7px);
    border-color: rgba(151, 195, 48, 0.62);
    box-shadow: 0 28px 78px rgba(32, 33, 38, 0.12);
}

.eco-solutions__icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.45) 0, rgba(255, 255, 255, 0) 38%),
        var(--accent);
    box-shadow: 0 16px 34px rgba(151, 195, 48, 0.28);
}

.eco-solutions__icon span {
    position: absolute;
    inset: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 5C12.5 5.4 7.4 8.9 5.2 15.3C4.7 16.8 5.8 18.2 7.4 18.1C14.1 17.6 18.6 12.2 20 5Z' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 20C7.5 14.5 11.4 11.2 16 9' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px 25px;
}

.eco-solutions__card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: var(--text);
    font-size: 23px;
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.eco-solutions__card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.eco-solutions__card--accent {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.26) 0, rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #8ccf16 0%, var(--accent) 52%, #589f14 100%);
    border-color: rgba(151, 195, 48, 0.6);
}

.eco-solutions__card--accent::before {
    background: rgba(255, 255, 255, 0.16);
}

.eco-solutions__number {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    color: #fff;
    font-size: 58px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.eco-solutions__card--accent p {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .eco-solutions__body {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .eco-solutions__text {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .eco-solutions {
        padding: 90px 0 100px;
    }

    .eco-solutions__wrap {
        padding: 38px;
        border-radius: 34px;
    }

    .eco-solutions__head {
        margin-bottom: 34px;
    }

    .eco-solutions__title {
        font-size: 42px;
    }

    .eco-solutions__text p {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .eco-solutions {
        padding: 70px 0 80px;
    }

    .eco-solutions__wrap {
        padding: 26px 18px;
        border-radius: 28px;
    }

    .eco-solutions__eyebrow {
        min-height: 34px;
        padding: 0 13px;
        margin-bottom: 14px;
        font-size: 13px;
    }

    .eco-solutions__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

    .eco-solutions__title span {
        white-space: normal;
    }

    .eco-solutions__title span::after {
        bottom: 2px;
        height: 8px;
    }

    .eco-solutions__body {
        gap: 28px;
    }

    .eco-solutions__text p {
        font-size: 16px;
        line-height: 1.58;
    }

    .eco-solutions__text p + p {
        margin-top: 16px;
    }

    .eco-solutions__button {
        width: 100%;
        margin-top: 24px;
    }

    .eco-solutions__cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .eco-solutions__card {
        min-height: auto;
        padding: 22px;
        border-radius: 22px;
    }

    .eco-solutions__card:hover {
        transform: translateY(-4px);
    }

    .eco-solutions__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
        border-radius: 16px;
    }

    .eco-solutions__card h3 {
        font-size: 21px;
    }

    .eco-solutions__number {
        font-size: 48px;
    }
}

.care-wellness {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.care-wellness .container {
    position: relative;
    z-index: 1;
}

.care-wellness__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 64px;
}

.care-wellness__media {
    position: relative;
    min-height: 640px;
    border-radius: 38px;
    overflow: hidden;
    background: #eef1e6;
    box-shadow: 0 30px 90px rgba(32, 33, 38, 0.14);
    isolation: isolate;
}

.care-wellness__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.14) 0%,
            rgba(0, 0, 0, 0.02) 46%,
            rgba(255, 255, 255, 0.12) 100%
        ),
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.38) 0, rgba(255, 255, 255, 0) 34%);
    pointer-events: none;
}

.care-wellness__media::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;
    z-index: 3;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(151, 195, 48, 0.24);
    filter: blur(4px);
    pointer-events: none;
}

.care-wellness__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.care-wellness__badge {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--text);
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 44px rgba(32, 33, 38, 0.14);
    backdrop-filter: blur(12px);
}

.care-wellness__badge span {
    color: var(--accent);
}

.care-wellness__badge--top {
    top: 28px;
    left: 28px;
}

.care-wellness__badge--bottom {
    right: 28px;
    bottom: 28px;
}

.care-wellness__content {
    position: relative;
    min-width: 0;
}

.care-wellness__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: var(--accent);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    background: rgba(151, 195, 48, 0.12);
    border: 1px solid rgba(151, 195, 48, 0.22);
}

.care-wellness__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(151, 195, 48, 0.14);
}

.care-wellness__title {
    margin: 0;
    max-width: 620px;
    color: var(--text);
    font-size: clamp(36px, 4.2vw, 62px);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: -0.055em;
}

.care-wellness__title span {
    position: relative;
    color: var(--accent);
    white-space: nowrap;
}

.care-wellness__text {
    max-width: 570px;
    margin-top: 24px;
}

.care-wellness__text p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.care-wellness__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.care-wellness__feature {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 750;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(151, 195, 48, 0.2);
    box-shadow: 0 12px 34px rgba(32, 33, 38, 0.06);
}

.care-wellness__feature span {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12.5L9.5 17L19 7' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 13px;
}

.care-wellness__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.care-wellness__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    color: var(--text);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    background: #fff;
    border: 1px solid rgba(32, 33, 38, 0.12);
    box-shadow: 0 14px 34px rgba(32, 33, 38, 0.08);
    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.care-wellness__more::after {
    content: "";
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17L17 7M17 7H8M17 7V16' stroke='%23202126' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    transition: filter .25s ease;
}

.care-wellness__more:hover {
    transform: translateY(-2px);
    color: #fff;
    background: var(--text);
    border-color: var(--text);
    box-shadow: 0 20px 48px rgba(32, 33, 38, 0.16);
}

.care-wellness__more:hover::after {
    filter: brightness(0) invert(1);
}

/* Form wrapper */
.care-wellness__formbox {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
    padding: 26px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 16%, rgba(151, 195, 48, 0.12) 0, rgba(151, 195, 48, 0) 32%),
        rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(151, 195, 48, 0.22);
    box-shadow: 0 22px 60px rgba(32, 33, 38, 0.1);
    backdrop-filter: blur(14px);
}

/* Your existing hero form inside this block */
.care-wellness .hero__form {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.care-wellness .field {
    width: 100%;
    height: 54px;
    padding: 0 17px;
    border-radius: 16px;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    background: #fff;
    border: 1px solid rgba(32, 33, 38, 0.1);
    box-shadow: 0 8px 20px rgba(32, 33, 38, 0.04);
    outline: none;
    transition:
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.care-wellness .field::placeholder {
    color: rgba(32, 33, 38, 0.45);
}

.care-wellness .field:focus {
    border-color: rgba(151, 195, 48, 0.85);
    box-shadow: 0 0 0 4px rgba(151, 195, 48, 0.14);
}

.care-wellness .hero__buttons {
    display: flex;
    width: 100%;
    margin-top: 2px;
    gap: 0;
}

.care-wellness .btn--call {
    display: none;
}

.care-wellness .btn--estimate {
    width: 100%;
    min-height: 56px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 16px 36px rgba(151, 195, 48, 0.32);
}

@media (max-width: 1200px) {
    .care-wellness {
        padding: 100px 0;
    }

    .care-wellness__wrap {
        gap: 42px;
        grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
    }

    .care-wellness__media,
    .care-wellness__media img {
        min-height: 580px;
    }

    .care-wellness__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .care-wellness {
        padding: 82px 0 90px;
    }

    .care-wellness__wrap {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .care-wellness__media {
        min-height: 420px;
        border-radius: 30px;
        order: 1;
    }

    .care-wellness__media img {
        min-height: 420px;
    }

    .care-wellness__content {
        order: 2;
    }

    .care-wellness__text {
        max-width: 100%;
    }

    .care-wellness__features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .care-wellness__formbox {
        max-width: 640px;
    }
}

@media (max-width: 767px) {
    .care-wellness {
        padding: 64px 0 72px;
    }

    .care-wellness__wrap {
        gap: 26px;
    }

    .care-wellness__media {
        min-height: 300px;
        border-radius: 24px;
        box-shadow: 0 18px 46px rgba(32, 33, 38, 0.12);
    }

    .care-wellness__media img {
        min-height: 300px;
    }

    .care-wellness__badge {
        min-height: 40px;
        padding: 10px 13px;
        font-size: 13px;
    }

    .care-wellness__badge--top {
        top: 14px;
        left: 14px;
    }

    .care-wellness__badge--bottom {
        right: 14px;
        bottom: 14px;
    }

    .care-wellness__eyebrow {
        min-height: 34px;
        padding: 0 13px;
        margin-bottom: 14px;
        font-size: 13px;
    }

    .care-wellness__title {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

    .care-wellness__title span {
        white-space: normal;
    }

    .care-wellness__title span::after {
        bottom: 2px;
        height: 8px;
    }

    .care-wellness__text {
        margin-top: 18px;
    }

    .care-wellness__text p {
        font-size: 16px;
        line-height: 1.55;
    }

    .care-wellness__features {
        grid-template-columns: 1fr;
        margin-top: 22px;
    }

    .care-wellness__actions {
        margin-top: 22px;
    }

    .care-wellness__more {
        min-height: 42px;
        padding: 0 18px;
        font-size: 13px;
    }

    .care-wellness__formbox {
        margin-top: 24px;
        padding: 20px;
        border-radius: 22px;
    }

    .care-wellness .field {
        height: 52px;
        border-radius: 14px;
        font-size: 15px;
    }

    .care-wellness .btn--estimate {
        min-height: 54px;
        font-size: 15px;
    }
}

.stats-strip {
    position: relative;
    width: 100%;
    padding: 72px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.26) 0, rgba(255, 255, 255, 0) 32%),
        radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #7fbf19 0%, var(--accent) 45%, #4f9f12 100%);
}

.stats-strip::before,
.stats-strip::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.stats-strip::before {
    width: 420px;
    height: 420px;
    left: -180px;
    top: -210px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.stats-strip::after {
    right: -80px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 42px solid rgba(255, 255, 255, 0.12);
}

.stats-strip__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.stats-item {
    position: relative;
    min-width: 0;
    text-align: center;
    color: var(--white);
    padding: 34px 20px 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 20px 52px rgba(22, 70, 8, 0.13);
    backdrop-filter: blur(12px);
    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.stats-item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 18px;
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    transform: translateX(-50%);
}

.stats-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.24) 0%,
            rgba(255, 255, 255, 0) 42%
        );
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.stats-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 28px 74px rgba(22, 70, 8, 0.2);
}

.stats-item:hover::after {
    opacity: 1;
}

.stats-item__value {
    display: block;
    font-size: clamp(42px, 4.2vw, 68px);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.06em;
    color: #fff;
    text-shadow: 0 10px 24px rgba(19, 72, 8, 0.16);
}

.stats-item__label {
    max-width: 220px;
    margin: 14px auto 0;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
    .stats-strip {
        padding: 58px 0;
    }

    .stats-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .stats-item {
        padding: 32px 18px 30px;
        border-radius: 24px;
    }

    .stats-item__label {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .stats-strip {
        padding: 44px 0;
    }

    .stats-strip::before {
        width: 300px;
        height: 300px;
        left: -180px;
        top: -120px;
    }

    .stats-strip::after {
        width: 260px;
        height: 260px;
        right: -160px;
        bottom: -120px;
        border-width: 34px;
    }

    .stats-strip__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stats-item {
        padding: 28px 18px 26px;
        border-radius: 22px;
    }

    .stats-item:hover {
        transform: translateY(-4px);
    }

    .stats-item__value {
        font-size: 44px;
    }

    .stats-item__label {
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.32;
    }
}

.triple-sliders {
    padding: 110px 0 120px;
}

.triple-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 900px) {
    .triple-sliders {
        padding: 90px 0 100px;
    }
}

@media (max-width: 767px) {
    .triple-sliders {
        padding: 70px 0 80px;
    }
}

.mutual-gallery-slider .swiper-slide {
    border-radius: 16px;
    overflow: hidden;
}

.mutual-gallery-slider img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* ключевое для адаптации */
}

.mutual-section {
    padding: 110px 0 120px;
    overflow: hidden;
}

.mutual-section__head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 44px;
    text-align: center;
}

.mutual-section__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.2;
    font-weight: 700;
}

.mutual-section__title span {
    color: var(--accent);
}

.mutual-section__spark {
    position: absolute;
    top: -55%;
    width: 65px;
    height: 65px;
    object-fit: contain;
    transform: translateY(-50%);
    pointer-events: none;
}

.mutual-section__spark--left {
    left: 15%;
}

.mutual-section__spark--right {
    right: 15%;
    transform: translateY(-50%) scaleX(-1);
}

.mutual-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.mutual-section__gallery,
.mutual-section__reviews {
    min-width: 0;
}

.mutual-gallery-slider,
.mutual-review-slider {
    position: relative;
}

.mutual-gallery-card {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #e8e8e8;
}

.mutual-gallery-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.1 / 1.06;
    object-fit: cover;
}

.mutual-gallery-slider__prev,
.mutual-gallery-slider__next,
.mutual-review-slider__prev,
.mutual-review-slider__next {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(32, 33, 38, 0.12);
    cursor: pointer;
    transition: transform .22s ease, background .22s ease;
    position: relative;
    flex: 0 0 auto;
}

.mutual-gallery-slider__prev:hover,
.mutual-gallery-slider__next:hover,
.mutual-review-slider__prev:hover,
.mutual-review-slider__next:hover {
    transform: scale(1.05);
}

.mutual-gallery-slider__prev::before,
.mutual-gallery-slider__next::before,
.mutual-review-slider__prev::before,
.mutual-review-slider__next::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 9px;
    height: 9px;
    border-top: 2px solid #8e8e8e;
    border-right: 2px solid #8e8e8e;
}

.mutual-gallery-slider__prev,
.mutual-gallery-slider__next {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
}

.mutual-gallery-slider__prev:hover,
.mutual-gallery-slider__next:hover {
    transform: translateY(-50%) scale(1.05);
}

.mutual-gallery-slider__prev {
    left: 12px;
}

.mutual-gallery-slider__next {
    right: 12px;
}

.mutual-gallery-slider__prev::before,
.mutual-review-slider__prev::before {
    transform: rotate(-135deg);
}

.mutual-gallery-slider__next::before,
.mutual-review-slider__next::before {
    transform: rotate(45deg);
}

.mutual-gallery-slider__pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.mutual-gallery-slider__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 !important;
    background: #d7d7d7;
    opacity: 1;
}

.mutual-gallery-slider__pagination .swiper-pagination-bullet-active {
    background: var(--accent);
}

.mutual-section__reviews-head {
    text-align: center;
}

.mutual-section__reviews-title {
    margin: 0;
    color: var(--text);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 55px;
}

.mutual-section__rating {
    margin-top: 42px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.mutual-section__rating-title {
    color: var(--text);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.mutual-section__rating-stars {
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1px;
}

.mutual-section__rating-stars img {
    height: 30px;
    width: 30px;
}

.mutual-section__rating-text {
    margin-top: 8px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.mutual-section__rating-google {
    margin-top: 8px;
}

.mutual-section__rating-google img {
    display: block;
    height: 28px;
    width: auto;
}

.mutual-review-wrap {
    margin-top: 28px;
}

.mutual-review-slider {
    overflow: hidden;
}

.review-card {
    border-radius: 16px;
    background: #efefef;
    padding: 18px 18px 18px;
    min-height: 168px;
}

.review-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.review-card__user {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.review-card__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9a7a6b;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    flex: 0 0 auto;
}

.review-card__meta {
    min-width: 0;
}

.review-card__name {
    color: var(--text);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.review-card__time {
    margin-top: 2px;
    color: #7b7b7b;
    font-size: 13px;
    line-height: 1.3;
}

.review-card__google-icon {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
}

.review-card__google-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.review-card__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 10px;
}

.review-card__stars img {
    width: 17px;
    height: 17px;
    display: block;
}

.review-card__text {
    margin: 12px 0 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
}

.mutual-review-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

@media (max-width: 1100px) {
    .mutual-section__spark--left {
        left: 10%;
    }

    .mutual-section__spark--right {
        right: 10%;
    }
}

@media (max-width: 900px) {
    .mutual-section {
        padding: 90px 0 100px;
    }

    .mutual-section__head {
        margin-bottom: 34px;
    }

    .mutual-section__title {
        font-size: 42px;
    }

    .mutual-section__spark {
        width: 45px;
        height: 45px;
        top: -25%;
    }

    .mutual-section__grid {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 620px;
        margin: 0 auto;
    }

    .mutual-section__reviews-title {
        font-size: 24px;
    }

    .mutual-section__rating {
        margin-top: 24px;
    }

    .mutual-review-wrap {
        margin-top: 22px;
    }
}

@media (max-width: 767px) {
    .mutual-section {
        padding: 70px 0 80px;
    }

    .mutual-section__title {
        font-size: 32px;
    }

    .mutual-gallery-card {
        border-radius: 14px;
    }

    .mutual-gallery-slider__prev,
    .mutual-gallery-slider__next,
    .mutual-review-slider__prev,
    .mutual-review-slider__next {
        width: 32px;
        height: 32px;
    }

    .mutual-gallery-slider__prev {
        left: 8px;
    }

    .mutual-gallery-slider__next {
        right: 8px;
    }

    .mutual-gallery-slider__pagination {
        margin-top: 16px;
    }

    .mutual-section__reviews-title {
        font-size: 22px;
    }

    .mutual-section__rating-title {
        font-size: 22px;
    }

    .mutual-section__rating-google img {
        height: 32px;
    }

    .review-card {
        padding: 16px 14px 16px;
        min-height: 150px;
    }

    .review-card__text {
        font-size: 14px;
    }

    .mutual-review-controls {
        margin-top: 12px;
        gap: 8px;
    }
}



.find-more {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}


.find-more .container {
    position: relative;
    z-index: 1;
}

.find-more__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.76fr) minmax(560px, 1.24fr);
    align-items: center;
    gap: 42px 64px;
    padding: 44px;
    border-radius: 40px;
     background: #fff;
    box-shadow: 0 28px 86px rgba(32, 33, 38, 0.08);
    overflow: hidden;
}

.find-more__grid::before {
    content: "";
    position: absolute;
    left: 38%;
    top: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(151, 195, 48, 0.09);
    pointer-events: none;
}

.find-more__content {
    position: relative;
    z-index: 1;
}

.find-more__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: var(--accent);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    background: rgba(151, 195, 48, 0.12);
    border: 1px solid rgba(151, 195, 48, 0.22);
}

.find-more__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(151, 195, 48, 0.14);
}

.find-more__title {
    position: relative;
    margin: 0;
    max-width: 430px;
    color: var(--text);
    font-size: clamp(36px, 3.8vw, 58px);
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -0.055em;
}

.find-more__title::after {
    content: "";
    display: block;
    width: 78px;
    height: 6px;
    margin-top: 22px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 10px 26px rgba(151, 195, 48, 0.32);
}

.find-more__text {
    max-width: 420px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.find-more__cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
}

.find-more__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    width: 100%;
    min-height: 250px;
    padding: 22px;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(151, 195, 48, 0.24);
    box-shadow: 0 18px 52px rgba(32, 33, 38, 0.08);
    isolation: isolate;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.find-more__card::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17L17 7M17 7H8M17 7V16' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    box-shadow: 0 12px 28px rgba(151, 195, 48, 0.34);
    opacity: 0;
    transform: translate(8px, 8px) scale(0.86);
    transition:
        opacity .35s ease,
        transform .35s ease;
}

.find-more__card:hover {
    transform: translateY(-9px);
    border-color: rgba(151, 195, 48, 0.72);
    box-shadow: 0 30px 82px rgba(32, 33, 38, 0.14);
}

.find-more__card:hover::before {
    opacity: 1;
}

.find-more__card:hover::after {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.find-more__card-label {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-self: flex-start;
    min-height: 34px;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    color: var(--text);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 24px rgba(32, 33, 38, 0.08);
    backdrop-filter: blur(10px);
}

.find-more__card img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 86%;
    height: 120px;
    margin: 22px auto 16px;
    object-fit: contain;
    transform: scale(1);
    transition:
        transform .35s ease,
        filter .35s ease;
}

.find-more__card:hover img {
    transform: scale(1.05);
}

.find-more__card-link {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    min-height: 34px;
    padding-right: 50px;
    color: var(--text);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.find-more__card--nextdoor {
     background: #8fd501;
    border-color: rgba(143, 205, 0, 0.48);
}

.find-more__card--nextdoor .find-more__card-label,
.find-more__card--nextdoor .find-more__card-link {
    color: #fff;
}

.find-more__card--nextdoor .find-more__card-label {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.26);
}

@media (max-width: 1000px) {
    .find-more {
        padding: 70px 0;
    }

    .find-more__grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 34px;
        padding: 38px;
    }

    .find-more__title {
        max-width: 620px;
    }

    .find-more__title::after {
        margin: 18px auto 0;
    }

    .find-more__text {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .find-more__cards {
        width: 100%;
        max-width: 760px;
    }
}

@media (max-width: 767px) {
    .find-more {
        padding: 50px 0;
    }

    .find-more__grid {
        gap: 26px;
        padding: 26px 18px;
        border-radius: 28px;
    }

    .find-more__eyebrow {
        min-height: 34px;
        padding: 0 13px;
        margin-bottom: 14px;
        font-size: 13px;
    }

    .find-more__title {
        font-size: 34px;
        line-height: 1.1;
    }

    .find-more__text {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.55;
    }

    .find-more__cards {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 420px;
    }

    .find-more__card {
        min-height: 220px;
        padding: 18px;
        border-radius: 22px;
        box-shadow: 0 14px 36px rgba(32, 33, 38, 0.09);
    }

    .find-more__card:hover {
        transform: translateY(-4px);
    }

    .find-more__card::after {
        right: 16px;
        bottom: 16px;
        width: 36px;
        height: 36px;
        background-size: 18px 18px;
    }

    .find-more__card img {
        height: 100px;
        margin: 18px auto 14px;
        max-width: 84%;
    }

    .find-more__card-link {
        padding-right: 44px;
        font-size: 13px;
    }
}

.cta-clean {
    padding: 110px 0 120px;
}

.cta-clean__box { 
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background-color: #eef1e6;
    background-image: url('https://greatcleaningpro.com/wp-content/uploads/2026/05/16_58_44-1.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 540px;
    padding: 44px 32px 38px;
}

.cta-clean__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-clean__icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
    color: var(--accent);
}

.cta-clean__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.cta-clean__title {
    margin: 0;
    color: var(--text);
    font-size: 58px;
    line-height: 1.2;
    font-weight: 700;
}

.cta-clean__title span {
    color: var(--accent);
}

.cta-clean .hero__form {
    width: 100%;
    max-width: 550px;
    margin: 38px auto 0;
    gap: 16px;
    grid-template-columns: 1fr;
}

.cta-clean .hero__buttons {
    gap: 0;
}

.cta-clean .btn--call {
    display: none;
}

.cta-clean .btn--estimate {
    width: 100%;
}

.cta-clean__decor {
    position: absolute;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.cta-clean__decor--left {
    left: 0;
    width: min(22vw, 310px);
}

.cta-clean__decor--right {
    right: 0;
    width: min(22vw, 310px);
}

@media (max-width: 1199px) {
    .cta-clean__box {
        padding: 30px 16px 190px;
         background-position: right;
    }
}

@media (max-width: 900px) {
    .cta-clean {
        padding: 90px 0 100px;
    }

    .cta-clean__title {
        font-size: 44px;
    }

    .cta-clean__decor--left,
    .cta-clean__decor--right {
        width: min(28vw, 220px);
    }
}

@media (max-width: 767px) {
    .cta-clean {
        padding: 70px 0 80px;
    }

    .cta-clean__box {
        min-height: auto;
        padding: 30px 16px 190px;
        border-radius: 18px;
    }

    .cta-clean__icon {
        width: 34px;
        height: 34px;
        margin-bottom: 14px;
    }

    .cta-clean__title {
        font-size: 32px;
    }

    .cta-clean .hero__form {
        max-width: 100%;
        margin-top: 24px;
        gap: 12px;
    }

    .cta-clean__decor--left,
    .cta-clean__decor--right {
        width: 160px;
    }

    .cta-clean__decor--left {
        left: -12px;
    }

    .cta-clean__decor--right {
        right: -12px;
    }
}







.contact-estimate-section {
    position: relative;
    padding: 120px 0 130px;
    overflow: hidden;
    background: #fff;
}


.contact-estimate-section .container {
    position: relative;
    z-index: 1;
}

.contact-estimate-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
    gap: 58px;
    align-items: center;
}

.contact-estimate-section__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 38px;
    overflow: hidden;
    border: 1px solid rgba(151, 195, 48, 0.2);
}

.contact-estimate-section__media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-estimate-section__content {
    max-width: 620px;
    min-width: 0;
}

.contact-estimate-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: var(--accent);
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    background: rgba(151, 195, 48, 0.12);
    border: 1px solid rgba(151, 195, 48, 0.22);
}

.contact-estimate-section__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(151, 195, 48, 0.14);
}

.contact-estimate-section__info {
    position: relative;
}

.contact-estimate-section__title,
.contact-estimate-section__form-title {
    margin: 0;
    color: var(--text);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.055em;
}

.contact-estimate-section__form-title {
    font-size: 30px;
}

.contact-estimate-section__text {
    margin-top: 20px;
}

.contact-estimate-section__text p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.contact-estimate-section__text p + p {
    margin-top: 12px;
}

.contact-estimate-section__contacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
}

.contact-estimate-section__contact {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
    padding: 12px 16px;
    border-radius: 18px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 750;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(151, 195, 48, 0.2);
    box-shadow: 0 14px 34px rgba(32, 33, 38, 0.06);
    transition:
        transform .22s ease,
        color .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.contact-estimate-section__contact:hover {
    transform: translateY(-2px);
    color: var(--accent);
    border-color: rgba(151, 195, 48, 0.55);
    box-shadow: 0 20px 48px rgba(32, 33, 38, 0.1);
}

.contact-estimate-section__contact-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: var(--accent);
    box-shadow: 0 12px 28px rgba(151, 195, 48, 0.26);
}

.contact-estimate-section__contact-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-estimate-section__form-box {
    margin-top: 30px;
    padding: 26px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 16%, rgba(151, 195, 48, 0.1) 0, rgba(151, 195, 48, 0) 32%),
        #fff;
    border: 1px solid rgba(151, 195, 48, 0.22);
    box-shadow: 0 22px 60px rgba(32, 33, 38, 0.09);
}

.contact-estimate-section .hero__form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.contact-estimate-section .field {
    width: 100%;
    height: 54px;
    padding: 0 17px;
    border-radius: 16px;
    color: var(--text);
    font-size: 15px;
    font-weight: 650;
    background: #fff;
    border: 1px solid rgba(32, 33, 38, 0.1);
    box-shadow: 0 8px 20px rgba(32, 33, 38, 0.04);
    outline: none;
    transition:
        border-color .22s ease,
        box-shadow .22s ease;
}

.contact-estimate-section .field::placeholder {
    color: rgba(32, 33, 38, 0.45);
}

.contact-estimate-section .field:focus {
    border-color: rgba(151, 195, 48, 0.85);
    box-shadow: 0 0 0 4px rgba(151, 195, 48, 0.14);
}

.contact-estimate-section .hero__buttons {
    display: flex;
    width: 100%;
    margin-top: 2px;
    gap: 0;
}

.contact-estimate-section .btn--call {
    display: none;
}

.contact-estimate-section .btn--estimate {
    width: 100%;
    min-height: 56px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 16px 36px rgba(151, 195, 48, 0.32);
}

@media (max-width: 1000px) {
    .contact-estimate-section {
        padding: 90px 0 100px;
    }

    .contact-estimate-section__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contact-estimate-section__media {
        min-height: 460px;
        max-width: 620px;
        margin: 0 auto;
        width: 100%;
    }

    .contact-estimate-section__content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .contact-estimate-section {
        padding: 70px 0 80px;
    }

    .contact-estimate-section__grid {
        gap: 26px;
    }

    .contact-estimate-section__media {
        min-height: 320px;
        padding: 16px;
        border-radius: 24px;
    }

    .contact-estimate-section__media img {
        max-width: 100%;
    }

    .contact-estimate-section__eyebrow {
        min-height: 34px;
        padding: 0 13px;
        margin-bottom: 14px;
        font-size: 13px;
    }

    .contact-estimate-section__title {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

    .contact-estimate-section__form-title {
        font-size: 26px;
    }

    .contact-estimate-section__text {
        margin-top: 16px;
    }

    .contact-estimate-section__text p {
        font-size: 16px;
        line-height: 1.55;
    }

    .contact-estimate-section__contacts {
        margin-top: 22px;
    }

    .contact-estimate-section__contact {
        min-height: 52px;
        padding: 11px 13px;
        border-radius: 16px;
        font-size: 15px;
    }

    .contact-estimate-section__contact-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        border-radius: 12px;
    }

    .contact-estimate-section__form-box {
        margin-top: 24px;
        padding: 20px;
        border-radius: 22px;
    }

    .contact-estimate-section .hero__form {
        margin-top: 16px;
        gap: 11px;
    }

    .contact-estimate-section .field {
        height: 52px;
        border-radius: 14px;
    }

    .contact-estimate-section .btn--estimate {
        min-height: 54px;
        font-size: 15px;
    }
}




.service-hours-section {
    position: relative;
    padding: 120px 0 130px;
    overflow: hidden;
}


.service-hours-section .container {
    position: relative;
    z-index: 1;
}

.service-hours-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 48px;
    align-items: center;
}

.service-hours-section__content {
    min-width: 0;
    padding: 42px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(151, 195, 48, 0.22);
    box-shadow: 0 28px 88px rgba(32, 33, 38, 0.08);
    backdrop-filter: blur(14px);
}

.service-hours-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 16px;
    margin-bottom: 22px;
    border-radius: 999px;
    color: var(--accent);
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    background: rgba(151, 195, 48, 0.12);
    border: 1px solid rgba(151, 195, 48, 0.22);
}

.service-hours-section__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(151, 195, 48, 0.14);
}

.service-hours-section__block + .service-hours-section__block {
    margin-top: 34px;
}

.service-hours-section__head {
    max-width: 700px;
    margin-bottom: 26px;
}

.service-hours-section__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.055em;
}

.service-hours-section__title--small {
    font-size: clamp(28px, 3vw, 40px);
}

.service-hours-section__subtitle {
    max-width: 620px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.service-hours-section__areas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
}

.service-hours-section__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-hours-section__list li {
    margin: 0 0 10px;
}

.service-hours-section__list a,
.service-hours-section__list span {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px 10px 38px;
    border-radius: 14px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 750;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(151, 195, 48, 0.18);
    box-shadow: 0 10px 26px rgba(32, 33, 38, 0.04);
    transition:
        color .22s ease,
        background .22s ease,
        border-color .22s ease,
        transform .22s ease,
        box-shadow .22s ease;
}

.service-hours-section__list a::before,
.service-hours-section__list span::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(151, 195, 48, 0.12);
    transform: translateY(-50%);
}

.service-hours-section__list a:hover {
    color: var(--accent);
    background: #fff;
    border-color: rgba(151, 195, 48, 0.52);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(32, 33, 38, 0.08);
}

.service-hours-section__block--hours {
    padding-top: 28px;
    border-top: 1px solid rgba(32, 33, 38, 0.08);
}

.service-hours-section__hours {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.service-hours-section__hour-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 18px;
    border-radius: 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 650;
    background:
        radial-gradient(circle at 14% 18%, rgba(151, 195, 48, 0.1) 0, rgba(151, 195, 48, 0) 38%),
        #fff;
    border: 1px solid rgba(151, 195, 48, 0.22);
    box-shadow: 0 14px 36px rgba(32, 33, 38, 0.06);
}

.service-hours-section__hour-item span:last-child {
    display: grid;
    gap: 3px;
}

.service-hours-section__hour-item strong {
    display: block;
    color: var(--text);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 600;
}

.service-hours-section__hour-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: var(--accent);
    box-shadow: 0 14px 30px rgba(151, 195, 48, 0.28);
}

.service-hours-section__hour-icon svg {
    display: block;
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.service-hours-section__media {
    position: relative;
    min-width: 0;
    border-radius: 38px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(151, 195, 48, 0.22);
    box-shadow: 0 28px 88px rgba(32, 33, 38, 0.1);
}

.service-hours-section__media::before {
    content: "";
    position: absolute;
    right: -48px;
    top: -52px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(151, 195, 48, 0.13);
    pointer-events: none;
}

.service-hours-section__media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 750px;
    height: auto;
    border-radius: 26px;
}

.service-hours-section__media-badge {
    position: absolute;
    left: 34px;
    bottom: 34px;
    z-index: 2;
    display: grid;
    gap: 3px;
    max-width: 210px;
    padding: 16px 18px;
    border-radius: 20px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 750;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 18px 44px rgba(32, 33, 38, 0.14);
    backdrop-filter: blur(12px);
}

.service-hours-section__media-badge strong {
    color: var(--accent);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
}

@media (max-width: 1100px) {
    .service-hours-section__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .service-hours-section__media {
        max-width: 680px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .service-hours-section {
        padding: 90px 0 100px;
    }

    .service-hours-section__content {
        padding: 32px;
        border-radius: 30px;
    }

    .service-hours-section__title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .service-hours-section {
        padding: 70px 0 80px;
    }

    .service-hours-section__content {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .service-hours-section__eyebrow {
        min-height: 34px;
        padding: 0 13px;
        margin-bottom: 16px;
        font-size: 13px;
    }

    .service-hours-section__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

    .service-hours-section__subtitle {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.55;
    }

    .service-hours-section__areas {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-hours-section__list li {
        margin-bottom: 9px;
    }

    .service-hours-section__list a,
    .service-hours-section__list span {
        min-height: 40px;
        padding: 10px 13px 10px 36px;
        font-size: 15px;
    }

    .service-hours-section__block + .service-hours-section__block {
        margin-top: 28px;
    }

    .service-hours-section__block--hours {
        padding-top: 24px;
    }

    .service-hours-section__hours {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-hours-section__hour-item {
        min-height: auto;
        padding: 16px;
        border-radius: 18px;
    }

    .service-hours-section__hour-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 14px;
    }

    .service-hours-section__hour-item strong {
        font-size: 16px;
    }

    .service-hours-section__media {
        padding: 12px;
        border-radius: 24px;
    }

    .service-hours-section__media img {
        border-radius: 18px;
    }

    .service-hours-section__media-badge {
        left: 22px;
        bottom: 22px;
        padding: 13px 15px;
        border-radius: 16px;
        font-size: 13px;
    }

    .service-hours-section__media-badge strong {
        font-size: 21px;
    }
}



.map-section {
    padding: 110px 0 120px;
    background: #fff;
}

.map-section__frame {
    overflow: hidden;
    border-radius: 18px;
    height: 430px;
    box-shadow: var(--shadow-soft);
}

.map-section__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .map-section {
        padding: 90px 0 100px;
    }

    .map-section__frame {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .map-section {
        padding: 70px 0 80px;
    }

    .map-section__frame {
        height: 300px;
        border-radius: 14px;
    }
}


.faq-section {
    position: relative;
    padding: 120px 0 130px;
    overflow: hidden;
    background: #fff;
}


.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-section__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.faq-section__intro {
    position: relative;
    min-width: 0;
    padding: 32px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 16% 18%, rgba(151, 195, 48, 0.12) 0, rgba(151, 195, 48, 0) 34%),
        #fff;
    border: 1px solid rgba(151, 195, 48, 0.2);
    box-shadow: 0 22px 70px rgba(32, 33, 38, 0.07);
}

.faq-section__intro-head {
    display: grid;
    gap: 18px;
    align-items: start;
}

.faq-section__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    flex: 0 0 auto;
    border-radius: 20px;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42) 0, rgba(255, 255, 255, 0) 38%),
        var(--accent);
    box-shadow: 0 16px 34px rgba(151, 195, 48, 0.28);
}

.faq-section__icon svg {
    display: block;
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.faq-section__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(34px, 3.8vw, 54px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.055em;
}

.faq-section__intro::after {
    content: "Quick answers about booking, pricing, supplies, and our cleaning process.";
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
}

.faq-section__items {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.faq-item {
    position: relative;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(151, 195, 48, 0.18);
    box-shadow: 0 14px 42px rgba(32, 33, 38, 0.055);
    overflow: hidden;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease,
        background .25s ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: rgba(151, 195, 48, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(151, 195, 48, 0.42);
    box-shadow: 0 20px 56px rgba(32, 33, 38, 0.085);
}

.faq-item.is-open {
    border-color: rgba(151, 195, 48, 0.6);
    background:
        radial-gradient(circle at 96% 10%, rgba(151, 195, 48, 0.11) 0, rgba(151, 195, 48, 0) 28%),
        #fff;
    box-shadow: 0 24px 68px rgba(32, 33, 38, 0.1);
}

.faq-item.is-open::before {
    opacity: 1;
}

.faq-item__button {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 68px;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    color: var(--text);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    cursor: pointer;
    transition: color .25s ease;
}

.faq-item__button:hover {
    color: var(--accent);
    background: transparent;
}

.faq-item__symbol {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    color: #fff;
    background: var(--accent);
    box-shadow: 0 12px 28px rgba(151, 195, 48, 0.26);
    transition:
        transform .25s ease,
        background .25s ease;
}

.faq-item.is-open .faq-item__symbol {
    transform: rotate(180deg);
    background: var(--text);
}

.faq-item__symbol::before,
.faq-item__symbol::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: currentColor;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition:
        opacity .25s ease,
        transform .25s ease;
}

.faq-item__symbol::before {
    width: 12px;
    height: 2px;
}

.faq-item__symbol::after {
    width: 2px;
    height: 12px;
}

.faq-item.is-open .faq-item__symbol::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(.35);
}

.faq-item__content {
    position: relative;
    z-index: 1;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        height .38s ease,
        opacity .28s ease;
    will-change: height, opacity;
}

.faq-item.is-open .faq-item__content {
    opacity: 1;
}

.faq-item__content-inner {
    padding: 0 28px 24px 74px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.62;
    font-weight: 500;
}

.faq-item__content-inner::before {
    content: "";
    display: block;
    width: 54px;
    height: 4px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(151, 195, 48, 0.32);
}

@media (max-width: 900px) {
    .faq-section {
        padding: 90px 0 100px;
    }

    .faq-section__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq-section__intro {
        position: relative;
        top: auto;
        padding: 28px;
        border-radius: 28px;
    }

    .faq-section__intro-head {
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 16px;
    }

    .faq-section__intro::after {
        margin-top: 16px;
        font-size: 16px;
    }

    .faq-section__title {
        font-size: 40px;
    }

    .faq-item__button {
        min-height: 64px;
        padding: 18px 20px;
        font-size: 17px;
    }

    .faq-item__content-inner {
        padding: 0 22px 22px 70px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 70px 0 80px;
    }

    .faq-section__grid {
        gap: 22px;
    }

    .faq-section__intro {
        padding: 22px;
        border-radius: 22px;
    }

    .faq-section__intro-head {
        gap: 12px;
    }

    .faq-section__icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .faq-section__icon svg {
        width: 23px;
        height: 23px;
    }

    .faq-section__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

    .faq-section__intro::after {
        font-size: 15px;
        line-height: 1.5;
    }

    .faq-section__items {
        gap: 12px;
    }

    .faq-item {
        border-radius: 20px;
    }

    .faq-item:hover {
        transform: none;
    }

    .faq-item__button {
        min-height: 58px;
        padding: 16px;
        gap: 12px;
        font-size: 15px;
        line-height: 1.38;
    }

    .faq-item__symbol {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .faq-item__symbol::before {
        width: 11px;
    }

    .faq-item__symbol::after {
        height: 11px;
    }

    .faq-item__content-inner {
        padding: 0 16px 18px 58px;
        font-size: 15px;
        line-height: 1.52;
    }

    .faq-item__content-inner::before {
        width: 42px;
        margin-bottom: 12px;
    }
}



.page-hero {
    --page-hero-bg: none;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 78px 0;
    isolation: isolate;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--page-hero-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 1;
    z-index: -2;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: -1;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero__content {
    color: #fff;
}

.page-hero__title {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.page-hero__text {
    margin-top: 18px;
}

.page-hero__text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.96);
}

.page-hero__text p+p {
    margin-top: 8px;
}

.page-hero__actions {
    margin-top: 28px;
}

.page-hero__actions .btn--estimate {
    min-width: 148px;
}

@media (max-width: 900px) {
    .page-hero {
        min-height: 260px;
        padding: calc(var(--header-height) + 28px) 0 56px;
    }

    .page-hero__title {
        font-size: 42px;
    }

    .page-hero__text {
        margin-top: 16px;
    }

    .page-hero__text p {
        font-size: 16px;
        line-height: 1.5;
    }

    .page-hero__actions {
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        min-height: 220px;
        padding: calc(var(--header-height) + 20px) 0 44px;
    }

    .page-hero::before {
        background-size: cover;
        background-position: center center;
    }

    .page-hero::after {
        background: rgba(0, 0, 0, 0.4);
    }

    .page-hero__title {
        font-size: 32px;
    }

    .page-hero__text {
        margin-top: 14px;
    }

    .page-hero__text p {
        font-size: 15px;
        line-height: 1.45;
    }

    .page-hero__actions {
        margin-top: 20px;
    }

    .page-hero__actions .btn--estimate {
        width: 100%;
        max-width: 220px;
    }
}



.story-section {
    padding: 110px 0 120px;
}

.story-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.story-section__logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 252px;
    border-radius: 18px;
    background: #fff;
}

.story-section__logo-box img {
    display: block;
    width: 100%;
    max-width: 100%;
	 border-radius: 18px;
	    border: 2px solid var(--accent);
    height: auto;
}

.story-section__content {
    max-width: 620px;
}

.story-section__title {
    margin: 0;
    color: var(--text);
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.story-section__text {
    margin-top: 24px;
}

.story-section__text p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.story-section__text p+p {
    margin-top: 42px;
}

@media (max-width: 900px) {
    .story-section {
        padding: 90px 0 100px;
    }

    .story-section__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .story-section__content {
        max-width: 100%;
    }

    .story-section__logo-box {
        min-height: 220px;
    }

    .story-section__title {
        font-size: 34px;
    }

    .story-section__text p+p {
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .story-section {
        padding: 70px 0 80px;
    }

    .story-section__grid {
        gap: 24px;
    }

    .story-section__logo-box {
        min-height: 180px;
        padding: 22px;
        border-radius: 14px;
    }

    .story-section__logo-box img {
        max-width: 280px;
    }

    .story-section__title {
        font-size: 32px;
    }

    .story-section__text {
        margin-top: 18px;
    }

    .story-section__text p {
        font-size: 16px;
        line-height: 1.55;
    }

    .story-section__text p+p {
        margin-top: 18px;
    }
}


.commitment-section {
    position: relative;
    padding: 120px 0 130px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(151, 195, 48, 0.16) 0, rgba(151, 195, 48, 0) 34%),
        radial-gradient(circle at 92% 82%, rgba(151, 195, 48, 0.12) 0, rgba(151, 195, 48, 0) 32%),
        linear-gradient(180deg, #ffffff 0%, #f4f8ec 100%);
}


.commitment-section .container {
    position: relative;
    z-index: 1;
}

.commitment-section__head {
    max-width: 860px;
    margin: 0 auto 58px;
    text-align: center;
}

.commitment-section__title {
    position: relative;
    display: inline-block;
    margin: 0;
    color: var(--text);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.commitment-section__title span {
    position: relative;
    color: var(--accent);
}

.commitment-section__title span::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: 5px;
    z-index: -1;
    height: 12px;
    border-radius: 999px;
    background: rgba(151, 195, 48, 0.2);
}

.commitment-section__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.commitment-card {
    position: relative;
    grid-column: span 2;
    min-width: 0;
    min-height: 100%;
    padding: 30px 26px 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 18% 14%, rgba(151, 195, 48, 0.09) 0, rgba(151, 195, 48, 0) 34%),
        rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(151, 195, 48, 0.24);
    box-shadow: 0 18px 52px rgba(32, 33, 38, 0.075);
    overflow: hidden;
    isolation: isolate;
    transition:
        transform .32s ease,
        box-shadow .32s ease,
        border-color .32s ease,
        background .32s ease;
}

.commitment-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.commitment-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.commitment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            135deg,
            rgba(151, 195, 48, 0.12) 0%,
            rgba(151, 195, 48, 0) 42%
        );
    opacity: 0;
    transition: opacity .32s ease;
    pointer-events: none;
}

.commitment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(151, 195, 48, 0.7);
    background: #fff;
    box-shadow: 0 30px 80px rgba(32, 33, 38, 0.13);
}

.commitment-card:hover::before {
    transform: scale(1.15);
    opacity: 1;
}

.commitment-card:hover::after {
    opacity: 1;
}

.commitment-card__icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42) 0, rgba(255, 255, 255, 0) 38%),
        var(--accent);
    box-shadow: 0 16px 34px rgba(151, 195, 48, 0.28);
    transition:
        transform .32s ease,
        box-shadow .32s ease;
}

.commitment-card:hover .commitment-card__icon {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 22px 44px rgba(151, 195, 48, 0.34);
}

.commitment-card__icon svg {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.commitment-card__icon svg path,
.commitment-card__icon svg rect,
.commitment-card__icon svg circle {
    stroke: currentColor;
    vector-effect: non-scaling-stroke;
}

.commitment-card__title {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: var(--text);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: -0.035em;
    transition: color .28s ease;
}

.commitment-card:hover .commitment-card__title {
    color: var(--accent);
}

.commitment-card__text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.62;
}

.commitment-section__actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

@media (max-width: 1100px) {
    .commitment-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .commitment-card,
    .commitment-card:nth-child(4),
    .commitment-card:nth-child(5) {
        grid-column: auto;
    }

    .commitment-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .commitment-section {
        padding: 90px 0 100px;
    }

    .commitment-section__head {
        margin-bottom: 40px;
    }

    .commitment-section__title {
        font-size: 42px;
    }

    .commitment-card {
        padding: 26px 22px 28px;
        border-radius: 24px;
    }

    .commitment-card__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
        border-radius: 20px;
    }

    .commitment-card__icon svg {
        width: 31px;
        height: 31px;
    }

    .commitment-card__title {
        font-size: 20px;
    }

    .commitment-card__text {
        font-size: 16px;
    }

    .commitment-section__actions {
        margin-top: 36px;
    }
}

@media (max-width: 767px) {
    .commitment-section {
        padding: 70px 0 80px;
    }

    .commitment-section__head {
        margin-bottom: 30px;
    }

    .commitment-section__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

    .commitment-section__title span::after {
        bottom: 2px;
        height: 8px;
    }

    .commitment-section__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .commitment-card,
    .commitment-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .commitment-card {
        padding: 22px 18px 24px;
        border-radius: 22px;
    }

    .commitment-card:hover {
        transform: translateY(-4px);
    }

    .commitment-card__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
        border-radius: 18px;
    }

    .commitment-card__icon svg {
        width: 29px;
        height: 29px;
    }

    .commitment-card__title {
        margin-bottom: 10px;
        font-size: 19px;
    }

    .commitment-card__text {
        font-size: 15px;
        line-height: 1.55;
    }

    .commitment-section__actions {
        margin-top: 26px;
    }
}


.apart-section {
    padding: 110px 0 120px;
    background: #f6f6f6;
}

.apart-section__head {
    text-align: center;
    margin-bottom: 42px;
}

.apart-section__title {
    margin: 0;
    color: var(--text);
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.apart-section__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.apart-card {
    padding: 28px 26px 30px;
    border: 2px solid var(--accent);
    border-radius: 20px;
    background: #fff;
}

.apart-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    color: #000;
}

.apart-card__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--accent);
	color: var(--accent);
}

.apart-card__title {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.apart-card__text {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.apart-section__actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

@media (max-width: 900px) {
    .apart-section {
        padding: 90px 0 100px;
    }

    .apart-section__title {
        font-size: 34px;
    }

    .apart-section__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 700px;
        margin: 0 auto;
    }

    .apart-card {
        padding: 24px 22px 26px;
    }

    .apart-card__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 18px;
    }

    .apart-card__text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .apart-section {
        padding: 70px 0 80px;
    }

    .apart-section__head {
        margin-bottom: 28px;
    }

    .apart-section__title {
        font-size: 32px;
    }

    .apart-section__grid {
        gap: 16px;
    }

    .apart-card {
        padding: 20px 18px 22px;
        border-radius: 16px;
    }

    .apart-card__icon {
        width: 36px;
        height: 36px;
        margin-bottom: 16px;
    }

    .apart-card__title {
        margin-bottom: 10px;
        font-size: 17px;
    }

    .apart-card__text {
        font-size: 15px;
        line-height: 1.5;
    }

    .apart-section__actions {
        margin-top: 24px;
    }
}



.guarantee-section {
    padding: 110px 0 120px;
    background: #fff;
}

.guarantee-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(560px, 0.88fr);
    gap: 56px;
    align-items: center;
}

.guarantee-section__content {
    max-width: 640px;
}

.guarantee-section__title {
    margin: 0;
    color: var(--text);
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.guarantee-section__text {
    margin-top: 22px;
    max-width: 640px;
}

.guarantee-section__text p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.guarantee-section__actions {
    margin-top: 30px;
}

.guarantee-section__media {
    overflow: hidden;
    border-radius: 18px;
    min-height: 420px;
}

.guarantee-section__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    aspect-ratio: auto;
    object-fit: cover;
}

@media (max-width: 991px) {
    .guarantee-section__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .guarantee-section {
        padding: 90px 0 100px;
    }

    .guarantee-section__grid {
        gap: 34px;
    }

    .guarantee-section__content {
        max-width: 100%;
    }

    .guarantee-section__title {
        font-size: 42px;
    }

    .guarantee-section__text {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .guarantee-section {
        padding: 70px 0 80px;
    }

    .guarantee-section__grid {
        gap: 24px;
    }

    .guarantee-section__title {
        font-size: 32px;
    }

    .guarantee-section__text {
        margin-top: 18px;
    }

    .guarantee-section__text p {
        font-size: 16px;
        line-height: 1.55;
    }

    .guarantee-section__actions {
        margin-top: 22px;
    }

    .guarantee-section__media {
        border-radius: 14px;
    }
}



.blog-grid-section {
    padding: 110px 0 120px;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    background: #f5f5f5;
}

.blog-card__media {
    display: block;
    overflow: hidden;
    height: 245px;
}

.blog-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.68 / 1;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.04);
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 25px;
}

.blog-card__title {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text);
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.blog-card__excerpt {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.blog-card__more {
    margin-top: auto;
    color: var(--accent);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
}

.blog-pagination {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(32, 33, 38, 0.10);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}

.blog-pagination a.page-numbers:hover {
    background: rgba(156, 196, 58, 0.10);
    border-color: var(--accent);
    color: var(--text);
    transform: translateY(-1px);
}

.blog-pagination .page-numbers.current {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    min-width: 44px;
    font-size: 18px;
}

.blog-pagination .page-numbers.disabled {
    opacity: 0.45;
    pointer-events: none;
}

@media (max-width: 900px) {
    .blog-grid-section {
        padding: 90px 0 100px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .blog-card__title {
        font-size: 18px;
    }

    .blog-pagination {
        margin-top: 28px;
    }
}

@media (max-width: 767px) {
    .blog-grid-section {
        padding: 70px 0 80px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-card {
        border-radius: 16px;
    }

    .blog-card__body {
        padding: 16px;
    }

    .blog-card__title {
        margin-bottom: 12px;
        font-size: 17px;
    }

    .blog-card__excerpt {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.5;
    }

    .blog-pagination {
        gap: 6px;
        margin-top: 24px;
    }

    .blog-pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 14px;
    }

    .blog-pagination .page-numbers.prev,
    .blog-pagination .page-numbers.next {
        min-width: 38px;
        font-size: 16px;
    }
}



.content-accordion-section {
    position: relative;
    padding: 120px 0 130px;
    overflow: hidden;
    background: #fff;
}

.content-accordion-section .container {
    position: relative;
    z-index: 1;
}

.content-accordion-section__wrap {
    display: grid;
    gap: 34px;
    margin: 0 auto;
}

.content-accordion-block {
    position: relative;
    display: flex;
    gap: 36px;
    align-items: start;
    flex-direction: column;
    padding: 38px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid rgba(151, 195, 48, 0.2);
    overflow: hidden;
}

.content-accordion-block + .content-accordion-block {
    margin-top: 0;
}

.content-accordion-block__title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text);
    font-size: clamp(30px, 3.5vw, 34px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.content-accordion-block__title::after {
    content: "";
    display: block;
    width: 64px;
    height: 5px;
    margin-top: 18px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 10px 24px rgba(151, 195, 48, 0.3);
}

.content-accordion-block__text {
    position: relative;
    z-index: 1;
    grid-column: 1 / 2;
    margin-top: 0;
        margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
}

.content-accordion-block__text p + p {
    margin-top: 14px;
}

.content-accordion {
    position: relative;
    z-index: 1;
    grid-column: 2 / 3;
    grid-row: 1 / span 2;
    display: grid;
    gap: 12px;
    margin-top: 0;
    border: 0;
    border-bottom: 0;
}

.content-accordion__item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(151, 195, 48, 0.18);
    transition:
        transform .24s ease,
        box-shadow .24s ease,
        border-color .24s ease,
        background .24s ease;
}

.content-accordion__item::before {
    content: "";
    position: absolute;
    right: -38px;
    top: -38px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: rgba(151, 195, 48, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
}

.content-accordion__item:hover {
    transform: translateY(-2px);
    border-color: rgba(151, 195, 48, 0.42);
    box-shadow: 0 18px 48px rgba(32, 33, 38, 0.08);
}

.content-accordion__item.is-open {
    border-color: rgba(151, 195, 48, 0.58);
}

.content-accordion__item.is-open::before {
    opacity: 1;
}

.content-accordion__button {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 64px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    text-align: left;
    color: var(--text);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
    cursor: pointer;
    transition: color .22s ease;
}

.content-accordion__button:hover {
    color: var(--accent);
}

.content-accordion__icon {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    color: #fff;
    background: var(--accent);
    box-shadow: 0 12px 28px rgba(151, 195, 48, 0.25);
    transition:
        transform .25s ease,
        background .25s ease;
}

.content-accordion__item.is-open .content-accordion__icon {
    transform: rotate(180deg);
    background: var(--text);
}

.content-accordion__icon::before,
.content-accordion__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: currentColor;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition:
        opacity .25s ease,
        transform .25s ease;
}

.content-accordion__icon::before {
    width: 12px;
    height: 2px;
}

.content-accordion__icon::after {
    width: 2px;
    height: 12px;
}

.content-accordion__item.is-open .content-accordion__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(.35);
}

.content-accordion__content {
    position: relative;
    z-index: 1;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        height .38s ease,
        opacity .28s ease;
    will-change: height, opacity;
}

.content-accordion__item.is-open .content-accordion__content {
    opacity: 1;
}

.content-accordion__content-inner {
    padding: 0 24px 22px 71px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.62;
    font-weight: 500;
}

.content-accordion__content-inner p {
    margin: 0;
}

.content-accordion__content-inner p + p {
    margin-top: 12px;
}

.content-accordion__content-inner ul,
.content-accordion__content-inner ol {
    margin: 10px 0 0;
    padding-left: 18px;
}

.content-accordion__content-inner li {
    margin-bottom: 7px;
}

.content-accordion__content-inner strong {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 1000px) {
    .content-accordion-section {
        padding: 90px 0 100px;
    }

    .content-accordion-block {
        gap: 24px;
        padding: 32px;
        border-radius: 30px;
    }

    .content-accordion-block__text {
        grid-column: auto;
    }

    .content-accordion {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 767px) {
    .content-accordion-section {
        padding: 70px 0 80px;
    }

    .content-accordion-section__wrap {
        gap: 22px;
    }

    .content-accordion-block {
        padding: 22px 18px;
        border-radius: 24px;
        gap: 20px;
    }

    .content-accordion-block__title {
        font-size: 30px;
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

    .content-accordion-block__title::after {
        width: 52px;
        height: 4px;
        margin-top: 14px;
    }

    .content-accordion-block__text {
        font-size: 15px;
        line-height: 1.55;
    }

    .content-accordion {
        gap: 10px;
    }

    .content-accordion__item {
        border-radius: 18px;
    }

    .content-accordion__item:hover {
        transform: none;
    }

    .content-accordion__button {
        min-height: 58px;
        gap: 12px;
        padding: 15px;
        font-size: 15px;
        line-height: 1.38;
    }

    .content-accordion__icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .content-accordion__icon::before {
        width: 11px;
    }

    .content-accordion__icon::after {
        height: 11px;
    }

    .content-accordion__content-inner {
        padding: 0 16px 18px 57px;
        font-size: 15px;
        line-height: 1.52;
    }
}



.content-split-list {
    background: #fff;
}

.content-split {
    padding: 110px 0 0;
}

.content-split:last-child {
    padding-bottom: 120px;
}

.content-split__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
}

.content-split__media,
.content-split__body {
    min-width: 0;
}

.content-split__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
    border-radius: 18px;
}

.content-split__media.full img {
    height: 100%;
       aspect-ratio: auto;
}


.content-split__body {
    color: var(--text);
}

.content-split__body h1,
.content-split__body h2,
.content-split__body h3,
.content-split__body h4,
.content-split__body h5 {
    margin: 0 0 18px;
    color: var(--text);
    line-height: 1.2;
    font-weight: 700;
}

.content-split__body h1 {
    font-size: 52px;
}

.content-split__body h2 {
    font-size: 40px;
}

.content-split__body h3 {
    font-size: 30px;
    margin-top: 28px;
}

.content-split__body h4 {
    font-size: 24px;
    margin-top: 24px;
}

.content-split__body h5 {
    font-size: 20px;
    margin-top: 20px;
}

.content-split__body p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.content-split__body ul,
.content-split__body ol {
    margin: 0 0 22px;
    padding: 0;
    color: var(--muted);
    list-style: none;
}

.content-split__body ul li,
.content-split__body ol li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 18px;
    font-size: 17px;
    line-height: 1.55;
}

.content-split__body ul li::before,
.content-split__body ol li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.content-split__body ul li:last-child,
.content-split__body ol li:last-child {
    margin-bottom: 0;
}

.content-split__body strong {
    color: var(--text);
}

.content-split__body .btn {
    margin-top: 8px;
}

.content-split-list>.content-split:nth-child(even) .content-split__media,
.content-split.is-reverse .content-split__media {
    order: 2;
}

.content-split-list>.content-split:nth-child(even) .content-split__body,
.content-split.is-reverse .content-split__body {
    order: 1;
}

@media (max-width: 900px) {
    .content-split {
        padding-top: 90px;
    }

    .content-split:last-child {
        padding-bottom: 100px;
    }

    .content-split__grid {
        gap: 34px;
    }

    .content-split__body h1 {
        font-size: 42px;
    }

    .content-split__body h2 {
        font-size: 34px;
    }

    .content-split__body h3 {
        font-size: 28px;
    }

    .content-split__body h4 {
        font-size: 22px;
    }

    .content-split__body h5 {
        font-size: 18px;
    }

    .content-split__body p,
    .content-split__body ul li,
    .content-split__body ol li {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .content-split {
        padding-top: 70px;
    }

    .content-split:last-child {
        padding-bottom: 80px;
    }

    .content-split__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .content-split-list>.content-split:nth-child(even) .content-split__media,
    .content-split-list>.content-split:nth-child(even) .content-split__body,
    .content-split.is-reverse .content-split__media,
    .content-split.is-reverse .content-split__body {
        order: initial;
    }

    .content-split__media img {
        border-radius: 14px;
    }

    .content-split__body h1 {
        font-size: 36px;
    }

    .content-split__body h2 {
        font-size: 32px;
    }

    .content-split__body h3 {
        font-size: 24px;
        margin-top: 22px;
    }

    .content-split__body h4 {
        font-size: 20px;
        margin-top: 20px;
    }

    .content-split__body h5 {
        font-size: 17px;
        margin-top: 18px;
    }

    .content-split__body p,
    .content-split__body ul li,
    .content-split__body ol li {
        font-size: 15px;
        line-height: 1.5;
    }

    .content-split__body ul,
    .content-split__body ol {
        margin-left: 20px;
    }
}


.single-post-section {
    padding: 110px 0 120px;
    background: #fff;
}

.single-post {
    max-width: 860px;
    margin: 0 auto;
}

.single-post__header {
    text-align: center;
}

.single-post__title {
    margin: 0;
    color: #1c4b23;
    font-size: 62px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.single-post__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    color: #1C244B;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.single-post__meta a {
    color: inherit;
    text-decoration: none;
}

.single-post__thumb {
    margin-top: 110px;
    text-align: center;
}

.single-post__thumb img {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 0;
    object-fit: cover;
}

.single-post__content {
    margin-top: 34px;
    color: #5f6785;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4,
.single-post__content h5 {
    margin: 28px 0 14px;
    color: #111827;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.single-post__content h2 {
    font-size: 28px;
}

.single-post__content h3 {
    font-size: 24px;
}

.single-post__content h4 {
    font-size: 20px;
}

.single-post__content h5 {
    font-size: 18px;
}

.single-post__content p,
.single-post__content ul li,
.single-post__content ol li {
    font-size: 17px;
    line-height: 1.55;
}

.single-post__content p {
    margin: 0 0 18px;
}

.single-post__content ul,
.single-post__content ol {
    margin: 0 0 18px 22px;
    padding: 0;
}

.single-post__content a {
    color: var(--accent);
}

.single-post__footer {
    margin-top: 54px;
    padding-top: 18px;
    border-top: 1px solid rgba(37, 48, 94, 0.24);
}

.single-post__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.single-post__nav-link {
    color: #4c5680;
    font-size: 14px;
    line-height: 1.4;
    font-style: italic;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.single-post__share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.single-post__share-label {
    color: #7a8199;
    font-size: 14px;
    line-height: 1.4;
}

.single-post__share-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.single-post__share-links a {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4f79ff;
    transition: transform .22s ease, opacity .22s ease;
}

.single-post__share-links a:hover {
    transform: translateY(-1px);
    opacity: .85;
}

.single-post__share-links svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@media (max-width: 900px) {
    .single-post-section {
        padding: 90px 0 100px;
    }

    .single-post {
        max-width: 700px;
    }

    .single-post__title {
        font-size: 48px;
    }

    .single-post__thumb {
        margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .single-post-section {
        padding: 70px 0 80px;
    }

    .single-post__title {
        font-size: 34px;
    }

    .single-post__meta {
        margin-top: 16px;
        gap: 8px;
        font-size: 13px;
        flex-wrap: wrap;
    }

    .single-post__thumb {
        margin-top: 42px;
    }

    .single-post__thumb img {
        max-width: 100%;
    }

    .single-post__content {
        margin-top: 24px;
    }

    .single-post__content h2 {
        font-size: 24px;
    }

    .single-post__content h3 {
        font-size: 21px;
    }

    .single-post__content p,
    .single-post__content ul li,
    .single-post__content ol li {
        font-size: 15px;
        line-height: 1.5;
    }

    .single-post__footer {
        margin-top: 34px;
        padding-top: 14px;
    }

    .single-post__nav {
        font-size: 13px;
    }

    .single-post__share {
        margin-top: 22px;
        gap: 12px;
    }
}




.included-section {
    padding: 110px 0 120px;
    background: #F4F8EC;
}

.included-section__head {
    text-align: center;
    margin-bottom: 40px;
}

.included-section__icon {
    width: 26px;
    height: 26px;
    margin: 0 auto 14px;
    color: #000;
}

.included-section__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.included-section__title {
    margin: 0;
    color: var(--text);
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
}

.included-section__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
    margin: 0 auto;
}

.included-card {
    grid-column: span 2;
    padding: 32px;
    border: 2px solid var(--accent);
    border-radius: 18px;
    background: #fff;
}

.included-card--bottom:nth-of-type(4) {
    grid-column: 2 / span 2;
}

.included-card--bottom:nth-of-type(5) {
    grid-column: 4 / span 2;
}

.included-card__title {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.included-card ul {
    margin: 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
}

.included-card li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.5;
}

.included-card li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.included-card li:last-child {
    margin-bottom: 0;
}

.included-card em {
    font-style: italic;
}

@media (max-width: 900px) {
    .included-section {
        padding: 90px 0 100px;
    }

    .included-section__title {
        font-size: 34px;
    }

    .included-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
    }

    .included-card,
    .included-card--bottom:nth-of-type(4),
    .included-card--bottom:nth-of-type(5) {
        grid-column: auto;
    }

    .included-card {
        padding: 20px 20px 22px;
    }

    .included-card li {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .included-section {
        padding: 70px 0 80px;
    }

    .included-section__head {
        margin-bottom: 28px;
    }

    .included-section__icon {
        width: 22px;
        height: 22px;
        margin-bottom: 10px;
    }

    .included-section__title {
        font-size: 32px;
    }

    .included-section__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .included-card {
        padding: 18px 16px 20px;
        border-radius: 16px;
    }
}


.c-404 {
        padding-top: 200px;
    padding-bottom: 200px;
}

.c-404__content {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column
}

.c-404__title {
    position: relative;
    padding-bottom: 20px;
    font-size: 64px;
    color: var(--color-primary);
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2
}

.c-404__content:before {
    content: "404";
    position: absolute;
    top: 50%;
    left: 50%;
    color: #f1f1f1;
    font-weight: 700;
    font-size: 20rem;
    line-height: 1;
    transform: translate(-50%,-50%);
    z-index: -1
}

.c-404__text {
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px
}

.c-404__controls {
    gap: .75rem;
    display: flex;
    align-items: center;
    justify-content: center
}

@media only screen and (max-width : 767px) {
    .c-404__title {
        font-size:34px
    }

    .c-404__text {
        font-size: 18px
    }

    .c-404__content:before {
        font-size: 46vw
    }

    .c-404__controls {
        gap: .75rem;
        display: flex;
        align-items: center
    }
}





.projects-archive,
.project-single {
    padding: 80px 0;
    background: var(--white);
}

.projects-archive__head,
.project-single__head {
    margin-bottom: 32px;
}

.projects-archive__title,
.project-single__title {
    margin: 0;
    color: var(--text);
    font-family: var(--font);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.projects-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.projects-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.projects-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(153, 192, 59, 0.35);
}

.projects-card__image {
    position: relative;
    aspect-ratio: 1 / 0.78;
    background: var(--menu-side);
    overflow: hidden;
}

.projects-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projects-card:hover .projects-card__image img {
    transform: scale(1.04);
}

.projects-card__content {
    padding: 24px;
}

.projects-card__title {
    margin: 0;
    color: var(--text);
    font-family: var(--font);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.projects-archive__empty {
    color: var(--muted);
    font-family: var(--font);
    font-size: 20px;
}

.projects-archive .navigation.pagination {
    margin-top: 40px;
}

.projects-archive .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.projects-archive .page-numbers {
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.projects-archive .page-numbers.current,
.projects-archive .page-numbers:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.project-single__slider-wrap {
       padding: 25px 0 50px;
}

.project-single__slider-wrap .triple-slider {
    overflow: hidden;
}

.project-single__slider-wrap .swiper-slide {
    height: auto;
}

.project-single__slider-wrap .swiper-slide img {
    width: 100%;
    height: 380px;
    display: block;
    object-fit: cover;
}

.project-single__content {
    max-width: 980px;
    color: var(--muted);
    font-family: var(--font);
    font-size: 18px;
    line-height: 1.75;
}

.project-single__content > *:first-child {
    margin-top: 0;
}

.project-single__content > *:last-child {
    margin-bottom: 0;
}

.project-single__content p {
    margin: 0 0 20px;
}

.project-single__content strong,
.project-single__content b {
    color: var(--text);
    font-weight: 700;
}

.project-single__content a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.project-single__content a:hover {
    color: var(--accent);
}

.project-single__content h2,
.project-single__content h3,
.project-single__content h4,
.project-single__content h5,
.project-single__content h6 {
    margin: 36px 0 18px;
    color: var(--text);
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.project-single__content h2 {
    font-size: clamp(30px, 3vw, 42px);
}

.project-single__content h3 {
    font-size: clamp(26px, 2.5vw, 34px);
}

.project-single__content h4 {
    font-size: clamp(22px, 2vw, 28px);
}

.project-single__content h5 {
    font-size: 22px;
}

.project-single__content h6 {
    font-size: 20px;
}

.project-single__content ul,
.project-single__content ol {
    margin: 0 0 24px;
    padding: 0;
}

.project-single__content ul {
    list-style: none;
}

.project-single__content ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 28px;
}

.project-single__content ul li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

.project-single__content ol {
    list-style: none;
    counter-reset: project-counter;
}

.project-single__content ol li {
    position: relative;
    counter-increment: project-counter;
    margin-bottom: 14px;
    padding-left: 42px;
}

.project-single__content ol li::before {
    content: counter(project-counter);
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(153, 192, 59, 0.14);
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

.project-single__content blockquote {
    margin: 32px 0;
    padding: 26px 28px;
    border-left: 4px solid var(--accent);
    border-radius: 20px;
    background: var(--menu-side);
    color: var(--text);
    font-size: 22px;
    line-height: 1.6;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
}

.project-single__content blockquote p:last-child {
    margin-bottom: 0;
}

.project-single__content figure {
    margin: 32px 0;
}

.project-single__content img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
}

.project-single__content hr {
    margin: 32px 0;
    border: 0;
    height: 1px;
    background: var(--border);
}

.project-single__related {
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.project-single__related-title {
    margin: 0 0 28px;
    color: var(--text);
    font-family: var(--font);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
}

@media (max-width: 1199px) {
    .projects-archive,
    .project-single {
        padding: 64px 0;
    }

    .projects-archive__grid {
        gap: 20px;
    }

    .projects-card__content {
        padding: 20px;
    }

    .projects-card__title {
        font-size: 22px;
    }

    .project-single__slider-wrap .swiper-slide img {
        height: 520px;
    }

    .project-single__content {
        font-size: 19px;
    }

    .project-single__content blockquote {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .projects-archive__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-single__slider-wrap .swiper-slide img {
        height: 420px;
    }

    .project-single__related {
        margin-top: 56px;
        padding-top: 32px;
    }
}

@media (max-width: 767px) {
    .projects-archive,
    .project-single {
        padding: 48px 0;
    }

    .projects-archive__head,
    .project-single__head {
        margin-bottom: 24px;
    }

    .projects-archive__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .projects-card {
        border-radius: 20px;
    }

    .projects-card__content {
        padding: 18px;
    }

    .projects-card__title {
        font-size: 20px;
    }

    .projects-archive .page-numbers {
        min-width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .project-single__slider-wrap {
        margin-bottom: 28px;
    }

    .project-single__slider-wrap .swiper-slide img {
        height: 280px;
    }

    .project-single__content {
        font-size: 17px;
        line-height: 1.65;
    }

    .project-single__content h2 {
        font-size: 28px;
    }

    .project-single__content h3 {
        font-size: 24px;
    }

    .project-single__content h4 {
        font-size: 21px;
    }

    .project-single__content blockquote {
        padding: 20px 18px;
        border-radius: 16px;
        font-size: 18px;
    }

    .project-single__related {
        margin-top: 44px;
        padding-top: 28px;
    }
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  transition: color .25s ease, transform .25s ease;
}

.post-back svg {
  width: 20px;
  transform: rotate(180deg);
}

.post-back:hover {
  color: var(--dark);
  transform: translateX(-2px);
}