:root {
    --bs-dark-rgb: 50, 50, 50;
    --bs-primary-rgb: 111, 130, 22;
    --bs-secondary-rgb: 138, 162, 26;
    --bs-light-rgb: 233, 233, 233;
    --bs-font-sans-serif: "Onest", sans-serif;
    --zoom: 1.587;
    --anim: 0.4s ease;
    
    --bs-primary: rgb(var(--bs-primary-rgb));
    --bs-secondary: rgb(var(--bs-secondary-rgb));
    --bs-dark: rgb(var(--bs-dark-rgb));
    --bs-light: rgb(var(--bs-light-rgb));
    
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-color: rgb(var(--bs-dark-rgb));
    --bs-link-color-rgb: var(--bs-primary-rgb);
    --bs-link-hover-color-rgb: var(--bs-secondary-rgb);
}

body {
    font-size: calc(12px * var(--zoom));
}

img, svg {
    max-width: 100%;
    height: auto;
}

svg {
    fill: currentColor;
}

a, button {
    color: inherit;
}


.hide-text--hidden .hide-text__content {
    max-height: 200px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.hide-text--hidden .hide-text__content::after {
    background: linear-gradient(0deg, rgb(255,255,255), transparent);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    pointer-events: none;
}

.hide-text__button {
    padding: 0;
    border: none;
    background-color: transparent;
    display: inline-flex;
    border-bottom: 2px dashed;
}

.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 100;
}

.page-progress__line {
    width: 0;
    background: rgb(var(--bs-secondary-rgb));
    height: 100%;
    transition: width var(--anim);
}

.burger {
    width: 39px;
    height: 39px;
    background-color: rgb(var(--bs-secondary-rgb));
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 4px;
}

.burger::before,.burger::after {
    content: '';
}

.burger::before, .burger::after, .burger__line {
    width: 50%;
    height: 3px;
    background-color: white;
}

.content p:last-child {
    margin-bottom: 0;
}

.slider-pagination {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 15px;
}

.slider-pagination.swiper-pagination-lock {
    display: none;
}

.slider-pagination__bullet {
    width: 8px;
    height: 8px;
    background-color: rgb(var(--bs-primary-rgb));
    border-radius: 50px;
    opacity: 0.5;
    transition: width var(--anim), opacity var(--anim);
}

.slider-pagination__bullet--active {
    width: 24px;
    opacity: 1;
}

.slider-arrow {
    --offset-x: 10px;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    background-color: white;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow svg {
    width: 30%;
}

.slider-arrow--prev {
    left: var(--offset-x);
}

.slider-arrow--next {
    right: var(--offset-x);
}

.btn {
    font-size: calc(12px * var(--zoom));
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: rgb(var(--bs-primary-rgb));
    --bs-btn-border-color: rgb(var(--bs-primary-rgb));
    --bs-btn-hover-color: rgb(var(--bs-white-rgb));
    --bs-btn-hover-bg: rgb(var(--bs-secondary-rgb));
    --bs-btn-hover-border-color: rgb(var(--bs-secondary-rgb));
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: rgb(var(--bs-secondary-rgb));
    --bs-btn-border-color: rgb(var(--bs-secondary-rgb));
    --bs-btn-hover-color: rgb(var(--bs-dark-rgb));
    --bs-btn-hover-bg: rgb(var(--bs-white-rgb));
    --bs-btn-hover-border-color: rgb(var(--bs-white-rgb));
}

.title, .subtitle {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.title {
    font-size: calc(31px * var(--zoom));
}

.subtitle {
    font-size: calc(19px * var(--zoom));
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: opacity var(--anim), visibility var(--anim);
}

.header--template-2 {
    opacity: 0;
    visibility: hidden;
}

.logo__name {
    font-size: calc(13px * var(--zoom));
}

.hero__container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    height: 100%;
}

.hero__title {
    font-size: calc(36px * var(--zoom));
    font-weight: 900;
    color: rgb(var(--bs-primary-rgb));
}

.hero__side {
    grid-column: 2 span;
    position: relative;
}

.hero__side-text {
    position: absolute;
    bottom: 30%;
    left: 50%;
    line-height: 1.2;
    transform: translateX(-50%) rotate(-90deg);
    white-space: nowrap;
    font-size: calc(37px * var(--zoom));
    text-transform: uppercase;
    font-weight: 700;
    color: rgb(var(--bs-white-rgb));
}

.hero__side-image {height: 100%;position: relative;}

.hero {
    height: 100vh;
    min-height: 830px;
}

.hero__side-image img {
    height: 100%;
    object-fit: cover;
}

.hero__side-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--bs-secondary-rgb), 0.5);
}

.hero__middle {
    grid-column: 5 span;
}

.hero__right {
    grid-column: 5 span;
}

.hero__middle-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(var(--bs-dark-rgb), 0.7), transparent);
}

.hero__middle-text {
    width: 100%;
    font-size: calc(13px * var(--zoom));
    color: rgb(var(--bs-white-rgb));
}

.hero__right-content {
    font-size: calc(14px * var(--zoom));
}

.hero__right-content a {
    transition: opacity var(--anim);
}

.hero__right-content a:hover {
    opacity: 0.5;
}

.services-col:nth-child(2n + 1) .service-item {
    background-color: rgb(var(--bs-light-rgb));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.services-col:nth-child(3n+1) {
    grid-column: 4 span;
}

.services-col:nth-child(3n + 2) {
    grid-column: 3 span;
}

.services-col:nth-child(3n) {
    grid-column: 5 span;
}

.services-grid--inner .services-col {
    grid-column: 4 span!important;
}

.service-item {
    min-height: 340px;
}

.service-item__name {
    font-size: calc(19px * var(--zoom));
}

.myths-quote {
    background-color: rgb(var(--bs-white-rgb), 0.8);
    font-size: calc(13px * var(--zoom));
}

.myths-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgb(var(--bs-white-rgb));
}

.myths-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(var(--bs-dark-rgb), 0.75), transparent);
}

.myths-waiting__title {
    font-size: calc(31px * var(--zoom));
}

.myths-waiting__text {
    font-size: calc(19px * var(--zoom));
}

.myths-info__title {
    font-size: calc(19px * var(--zoom));
    line-height: 1.4;
}

.myths-info__item {
    font-size: calc(13px * var(--zoom));
}

.client-types__item {
    font-size: calc(19px * var(--zoom));
    display: flex;
    gap: 10px;
}

.client-types__item-number {
    min-width: 40px;
}

.client-types__section::before {
    content: '';
    display: block;
    width: 40%;
    height: 10px;
    margin-bottom: 30px;
    background-color: rgb(var(--bs-primary-rgb));
}

.client-types__section-text {
    font-size: calc(13px * var(--zoom));
}

.client-types__section-title {
    font-size: calc(19px * var(--zoom));
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.criteria__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6f8216;
    opacity: 0.6;
}

.about-advantage {
    position: relative;
    padding-left: 32px;
}

.about-advantage::before {
    content: '';
    width: 8px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(var(--bs-white-rgb));
    opacity: 0.4;
}

.about-advantage__name {
    font-size: calc(19px * var(--zoom));
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-advantage__caption {
    font-size: calc(13px * var(--zoom));
}

.partner-item::before {
    content: '';
    width: 8px;
    height: 100%;
    background-color: rgb(var(--bs-primary-rgb));
    position: absolute;
    left: 0;
    top: 0;
}

.guarantee-item__image {
    display: block;
    height: 400px;
}

.guarantee-item__caption {
    background-color: rgb(var(--bs-primary-rgb), 0.7);
    color: rgb(var(--bs-white-rgb));
    font-weight: 600;
}

.partner-item__image {
    height: 95px;
}

.messenger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: lightgray;
    font-size: calc(13px * var(--zoom));
    width: 100%;
}

.messenger-btn--whatsapp {
    background-color: #4fc857;
    color: var(--bs-white);
}

.messenger-btn--telegram {
    background-color: #5dbee1;
    color: var(--bs-white);
}

.footer-menu__link {
    font-size: calc(16px * var(--zoom));
    font-weight: 100;
}

.footer-menu {
    gap: 24px;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: rgb(var(--bs-white-rgb), 0.1);
}

.footer__top, .footer__contacts {
    --bs-border-color: rgba(111,130,22);
}

.footer__bottom {
    font-size: calc(12px * var(--zoom));
}

.form-privacy {
    font-size: 14px;
}

.portfolio__thumbs .swiper-slide {
    opacity: 0.5;
    filter: saturate(0);
}

.portfolio__thumbs .swiper-slide-thumb-active {
    opacity: 1;
    filter: saturate(1);
}

.cookie-warning {
    position: fixed;
    bottom: 8px;
    transform: translateX(-50%);
    left: 50%;
    display: none;
    justify-content: space-between;
    width: 100%;
    padding: 32px;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: white;
    color: rgb(0, 0, 0);
    max-width: 836px;
    box-shadow: 0 0 16px 0 rgb(0, 0, 0, 0.2);
}

.cookie-warning--active {
    display: flex;
    align-items: center;
    z-index: 1000;
}

.cookie-warning__text {
    font-size: 16px;
    line-height: 160%;
    margin-right: 30px;
    max-width: 630px;
}

.cookie-warning__text a {
    color: inherit;
}

.cookie-warning__read {
    display: block;
    margin-left: 15px;
    color: white;
    text-decoration: underline;
}

.cookie-warning__apply {
    padding: 8px 18px;
    background-color: rgb(var(--bs-primary-rgb));
    border: none;
    border-radius: 4px;
    color: white;
}

.scroll-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    border: none;
    border-radius: 4px;
    background: rgb(var(--bs-primary-rgb));
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.main-menu__search {
    width: 18px;
    cursor: pointer;
}
.main-menu__search svg {
    color: inherit;
    padding-bottom: 4px;
}
.main-menu__search svg:hover {
    color: #fcec00;
}
.search-form__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 999;
    transition: 0.3s;
    display: none;
}
.search-input {
    flex: 1;
    border-radius: 15px;
    font-size: 17px;
    max-width: 600px;
    padding: 16px 24px;
    border: 1px solid rgb(0,0,0,0.1);
}

.search-form fieldset {
    display: flex;
    justify-content: center;
    padding: 31px;
}
.search-form__close-button {
    width: 40px;
    height: 40px;
    color: black;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.search-form__close-button svg {
    color: black;
}
.search-form__close-button svg:hover {
    color: #fcec00;
}
.body--active:before {
	content:'';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	z-index: 2;
}
.search-form--active {
    display: block !important;
}

.legal-card {
    border: 2px solid #E9E9E9;
    padding: calc(1.5rem * var(--zoom, 1));
    height: 100%;
    background: #fff;
}
.legal-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
    color: #6F8216;
}
.legal-card__label {
    font-size: 0.78em;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}
.legal-card__value { font-weight: 700; }
.legal-card__placeholder { color: #c0392b; font-style: italic; font-weight: 400; }

.stat-block { background: #323232; color: #fff; }
.stat-item {
    text-align: center;
    padding: calc(2.5rem * var(--zoom, 1)) calc(1rem * var(--zoom, 1));
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: 0; }
.stat-item__number {
    font-size: calc(2.8rem * var(--zoom, 1));
    font-weight: 900;
    line-height: 1;
    color: #8AA21A;
}
.stat-item__label { font-size: 0.85em; opacity: 0.65; margin-top: 0.5rem; }

.director-photo {
    width: calc(180px * var(--zoom, 1));
    height: auto;
    max-width: 100%;
    aspect-ratio: 4/4;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #6F8216;
    flex-shrink: 0;
}

.geo {
    --geo-bg: #ffffff;
    --geo-surface: #f7f8fa;
    --geo-surface-2: #eef0f4;
    --geo-text: #0e1726;
    --geo-text-muted: #5a6477;
    --geo-border: #e3e6ec;
    --geo-accent: #8aa21a;
    --geo-accent-dark: #6f8216;
    --geo-accent-soft: rgb(111 130 22 / 10%);
    --geo-shadow-sm: 0 1px 2px rgba(14, 23, 38, 0.04);
    --geo-shadow-md: 0 8px 24px -8px rgba(14, 23, 38, 0.12);
    --geo-radius: 0;
    --geo-radius-sm: 0;
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--geo-bg) 0%, var(--geo-surface) 100%);
    color: var(--geo-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.geo__container {
    max-width: 1240px;
    margin: 0 auto;
}

.geo__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.geo__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--geo-accent);
    margin-bottom: 16px;
}

.geo__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: var(--geo-text);
}

.geo__lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--geo-text-muted);
    margin: 0;
}

.geo__lead strong {
    color: var(--geo-text);
    font-weight: 600;
}

.geo__toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 28px;
}

.geo__search {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--geo-bg);
    border: 1.5px solid var(--geo-border);
    border-radius: var(--geo-radius);
    padding: 0 16px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.geo__search:focus-within {
    border-color: var(--geo-accent);
    box-shadow: 0 0 0 4px var(--geo-accent-soft);
}

.geo__search-icon {
    flex-shrink: 0;
    color: var(--geo-text-muted);
    margin-right: 12px;
}

.geo__search-input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    font-size: 16px;
    color: var(--geo-text);
    padding: 16px 0;
    min-width: 0;
}

.geo__search-input::placeholder {
    color: var(--geo-text-muted);
    opacity: 0.7;
}

.geo__search-clear {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border: 0;
    background: var(--geo-surface-2);
    color: var(--geo-text-muted);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.geo__search-clear:hover {
    background: var(--geo-text);
    color: var(--geo-bg);
}

.geo__stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 12px 22px;
    background: var(--geo-bg);
    border: 1.5px solid var(--geo-border);
    border-radius: var(--geo-radius);
    min-width: 180px;
}

.geo__stats-number {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: var(--geo-accent);
    font-variant-numeric: tabular-nums;
}

.geo__stats-label {
    font-size: 12px;
    color: var(--geo-text-muted);
    margin-top: 4px;
    line-height: 1.3;
}

.geo__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
    margin-bottom: 32px;
}

.btn--city {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    background: var(--geo-bg);
    border: 1.5px solid var(--geo-border);
    border-radius: var(--geo-radius-sm);
    font: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--geo-text);
    text-align: left;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
    box-shadow: var(--geo-shadow-sm);
}

.btn--city::before {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--geo-surface-2);
    transition: background 0.18s ease, box-shadow 0.18s ease;
}

.btn--city:hover,
.btn--city:focus-visible {
    border-color: var(--geo-accent);
    background: var(--geo-accent-soft);
    color: var(--geo-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--geo-shadow-md);
    outline: none;
}

.btn--city:hover::before,
.btn--city:focus-visible::before {
    background: var(--geo-accent);
    box-shadow: 0 0 0 4px var(--geo-accent-soft);
}

.btn--city:active {
    transform: translateY(0);
}

.btn--city.is-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--geo-text) 0%, #1a2438 100%);
    border-color: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.btn--city.is-featured::before {
    background: var(--geo-accent);
    box-shadow: 0 0 0 4px rgb(138 162 26 / 20%);
}

.btn--city.is-featured:hover,
.btn--city.is-featured:focus-visible {
    background: linear-gradient(135deg, var(--geo-accent) 0%, var(--geo-accent-dark) 100%);
    color: #fff;
}

.btn--city.is-hidden {
    display: none;
}

.geo__empty {
    text-align: center;
    padding: 32px 20px;
    background: var(--geo-bg);
    border: 1.5px dashed var(--geo-border);
    border-radius: var(--geo-radius);
    font-size: 15px;
    color: var(--geo-text-muted);
    margin: 0 0 32px;
}

.geo__empty-link {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    font-weight: 600;
    color: var(--geo-accent);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.geo__empty-link:hover {
    color: var(--geo-accent-dark);
}

.geo__footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 24px 28px;
    background: var(--geo-bg);
    border: 1.5px solid var(--geo-border);
    border-radius: var(--geo-radius);
    box-shadow: var(--geo-shadow-sm);
}

.geo__footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--geo-accent-soft);
    color: var(--geo-accent);
    flex-shrink: 0;
}

.geo__footer-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--geo-text-muted);
}

.geo__footer-text strong {
    display: block;
    color: var(--geo-text);
    font-weight: 600;
    margin-bottom: 2px;
}

.geo__footer-btn {
    padding: 12px 24px;
    background: var(--geo-accent);
    color: #fff;
    border: 0;
    border-radius: var(--geo-radius-sm);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
}

.geo__footer-btn:hover {
    background: var(--geo-accent-dark);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .geo {
        padding: 56px 0 56px 16px;
    }

    .geo__container {
        padding-right: 0;
    }

    .geo__header,
    .geo__toolbar,
    .geo__empty,
    .geo__footer {
        margin-right: 16px;
    }

    .geo__header {
        margin-bottom: 32px;
    }

    .geo__toolbar {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .geo__stats {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 14px 18px;
    }

    .geo__stats-number {
        font-size: 22px;
    }

    .geo__stats-label {
        margin-top: 0;
    }

    /* Ãâ€œÃÂ¾Ã‘â‚¬ÃÂ¸ÃÂ·ÃÂ¾ÃÂ½Ã‘â€šÃÂ°ÃÂ»Ã‘Å’ÃÂ½Ã‘â€¹ÃÂ¹ Ã‘ÂÃÂºÃ‘â‚¬ÃÂ¾ÃÂ»ÃÂ»: 3 Ã‘â‚¬Ã‘ÂÃÂ´ÃÂ°, ÃÂ¿Ã‘â‚¬ÃÂ¾ÃÂºÃ‘â‚¬Ã‘Æ’Ã‘â€šÃÂºÃÂ° ÃÂ²ÃÂ¿Ã‘â‚¬ÃÂ°ÃÂ²ÃÂ¾ */
    .geo__grid {
        display: grid;
        grid-auto-flow: column;
        grid-template-rows: repeat(3, auto);
        grid-template-columns: unset;
        grid-auto-columns: 150px;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 16px 16px 0;
        margin-bottom: 24px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        -webkit-overflow-scrolling: touch;
        mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 28px), transparent 100%);
        -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 28px), transparent 100%);
    }

    .geo__grid::-webkit-scrollbar {
        height: 4px;
    }

    .geo__grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .geo__grid::-webkit-scrollbar-thumb {
        background: var(--geo-border);
        border-radius: 4px;
    }

    .btn--city {
        padding: 12px 14px;
        font-size: 14px;
        scroll-snap-align: start;
    }

    /* ÃÅ“ÃÂ¾Ã‘ÂÃÂºÃÂ²ÃÂ° Ã¢â‚¬â€ ÃÂ²Ã‘â€¹Ã‘ÂÃÂ¾ÃÂºÃÂ°Ã‘Â hero-ÃÂºÃÂ°Ã‘â‚¬Ã‘â€šÃÂ¾Ã‘â€¡ÃÂºÃÂ° ÃÂ²ÃÂ¾ ÃÂ²Ã‘ÂÃ‘Å½ ÃÂ²Ã‘â€¹Ã‘ÂÃÂ¾Ã‘â€šÃ‘Æ’ ÃÂ¿ÃÂµÃ‘â‚¬ÃÂ²ÃÂ¾ÃÂ³ÃÂ¾ Ã‘ÂÃ‘â€šÃÂ¾ÃÂ»ÃÂ±Ã‘â€ ÃÂ° */
    .btn--city.is-featured {
        /* grid-column: auto; */
        /* grid-row: span 3; */
        /* flex-direction: column; */
        /* align-items: flex-start; */
        /* justify-content: flex-end; */
        padding: 12px 14px;
        font-size: 14px;
        /* min-height: 100%; */
    }

    .btn--city.is-featured::before {
        /* margin-bottom: auto; */
    }

    .geo__footer {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 20px;
    }

    .geo__footer-icon {
        margin: 0 auto;
    }

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

@media (prefers-reduced-motion: reduce) {
    .btn--city,
    .geo__footer-btn,
    .geo__search,
    .geo__search-clear {
        transition: none;
    }
}

.faq {
    --faq-bg: #ffffff;
    --faq-surface: #f7f8fa;
    --faq-text: #0e1726;
    --faq-text-muted: #5a6477;
    --faq-border: #e3e6ec;
    --faq-accent: #8aa21a;
    --faq-accent-dark: #6f8216;
    --faq-accent-soft: rgb(111 130 22 / 10%);
    --faq-radius: 0;
    padding: 80px 20px;
    background: var(--faq-bg);
    color: var(--faq-text);
}

.faq__container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Ãâ€ºÃÂµÃÂ²ÃÂ°Ã‘Â ÃÂºÃÂ¾ÃÂ»ÃÂ¾ÃÂ½ÃÂºÃÂ°: sticky-ÃÂ±ÃÂ»ÃÂ¾ÃÂº Ã‘Â ÃÂ·ÃÂ°ÃÂ³ÃÂ¾ÃÂ»ÃÂ¾ÃÂ²ÃÂºÃÂ¾ÃÂ¼ ÃÂ¸ CTA Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.faq__aside {
    position: sticky;
    top: 32px;
}

.faq__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--faq-accent);
    margin-bottom: 16px;
}

.faq__title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: var(--faq-text);
}

.faq__lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--faq-text-muted);
    margin: 0 0 28px;
}

.faq__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--faq-text);
    color: #fff;
    border: 0;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.faq__cta svg {
    transition: transform 0.2s ease;
}

.faq__cta:hover {
    background: var(--faq-accent);
    transform: translateY(-1px);
}

.faq__cta:hover svg {
    transform: translateX(3px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ÃÅ¸Ã‘â‚¬ÃÂ°ÃÂ²ÃÂ°Ã‘Â ÃÂºÃÂ¾ÃÂ»ÃÂ¾ÃÂ½ÃÂºÃÂ°: ÃÂ°ÃÂºÃÂºÃÂ¾Ã‘â‚¬ÃÂ´ÃÂµÃÂ¾ÃÂ½ Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--faq-bg);
    border: 1.5px solid var(--faq-border);
    border-radius: var(--faq-radius);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__item:hover {
    border-color: #cdd2dc;
}

.faq__item:has(.faq__q[aria-expanded="true"]) {
    border-color: var(--faq-accent);
    box-shadow: 0 8px 28px -12px rgb(111 130 22 / 10%);
}

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--faq-text);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq__q:hover {
    color: var(--faq-accent);
}

.faq__q[aria-expanded="true"] {
    color: var(--faq-accent);
    padding-bottom: 8px;
}

.faq__q-text {
    flex: 1;
}

.faq__q-icon {
    position: relative;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--faq-surface);
    transition: background 0.2s ease, transform 0.3s ease;
}

.faq__q-icon::before,
.faq__q-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--faq-text);
    border-radius: 1px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background 0.2s ease;
}

.faq__q-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__q:hover .faq__q-icon,
.faq__q[aria-expanded="true"] .faq__q-icon {
    background: var(--faq-accent-soft);
}

.faq__q:hover .faq__q-icon::before,
.faq__q:hover .faq__q-icon::after,
.faq__q[aria-expanded="true"] .faq__q-icon::before,
.faq__q[aria-expanded="true"] .faq__q-icon::after {
    background: var(--faq-accent);
}

.faq__q[aria-expanded="true"] .faq__q-icon {
    transform: rotate(180deg);
}

.faq__q[aria-expanded="true"] .faq__q-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* ÃÅ¸ÃÂ»ÃÂ°ÃÂ²ÃÂ½ÃÂ°Ã‘Â ÃÂ°ÃÂ½ÃÂ¸ÃÂ¼ÃÂ°Ã‘â€ ÃÂ¸Ã‘Â Ã‘â‚¬ÃÂ°Ã‘ÂÃÂºÃ‘â‚¬Ã‘â€¹Ã‘â€šÃÂ¸Ã‘Â Ã‘â€¡ÃÂµÃ‘â‚¬ÃÂµÃÂ· grid-template-rows */
.faq__a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq__q[aria-expanded="true"] + .faq__a-wrap {
    grid-template-rows: 1fr;
}

.faq__a {
    overflow: hidden;
    font-size: 16px;
    line-height: 1.65;
    color: var(--faq-text-muted);
    padding: 0 24px;
}

.faq__q[aria-expanded="true"] + .faq__a-wrap .faq__a {
    padding: 0 24px 24px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ÃÂÃÂ´ÃÂ°ÃÂ¿Ã‘â€šÃÂ¸ÃÂ² Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 960px) {
    .faq__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq__aside {
        position: static;
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .faq {
        padding: 56px 16px;
    }

    .faq__q {
        padding: 18px 18px;
        font-size: 15px;
        gap: 14px;
    }

    .faq__q-icon {
        width: 30px;
        height: 30px;
    }

    .faq__q-icon::before,
    .faq__q-icon::after {
        width: 11px;
    }

    .faq__a {
        font-size: 14.5px;
        padding: 0 18px;
    }

    .faq__q[aria-expanded="true"] + .faq__a-wrap .faq__a {
        padding: 0 18px 18px;
    }

    .faq__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq__a-wrap,
    .faq__q-icon,
    .faq__q-icon::before,
    .faq__q-icon::after,
    .faq__cta,
    .faq__cta svg {
        transition: none;
    }
}

.faq {
    --faq-bg: #ffffff;
    --faq-surface: #f7f8fa;
    --faq-text: #0e1726;
    --faq-text-muted: #5a6477;
    --faq-border: #e3e6ec;
    --faq-accent: #8aa21a;
    --faq-accent-dark: #6f8216;
    --faq-accent-soft: rgb(111 130 22 / 10%);
    --faq-radius: 0;
    padding: 80px 20px;
    background: var(--faq-bg);
    color: var(--faq-text);
}

.faq__container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Ãâ€ºÃÂµÃÂ²ÃÂ°Ã‘Â ÃÂºÃÂ¾ÃÂ»ÃÂ¾ÃÂ½ÃÂºÃÂ°: sticky-ÃÂ±ÃÂ»ÃÂ¾ÃÂº Ã‘Â ÃÂ·ÃÂ°ÃÂ³ÃÂ¾ÃÂ»ÃÂ¾ÃÂ²ÃÂºÃÂ¾ÃÂ¼ ÃÂ¸ CTA Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.faq__aside {
    position: sticky;
    top: 32px;
}

.faq__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--faq-accent);
    margin-bottom: 16px;
}

.faq__title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: var(--faq-text);
}

.faq__lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--faq-text-muted);
    margin: 0 0 28px;
}

.faq__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--faq-text);
    color: #fff;
    border: 0;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.faq__cta svg {
    transition: transform 0.2s ease;
}

.faq__cta:hover {
    background: var(--faq-accent);
    transform: translateY(-1px);
}

.faq__cta:hover svg {
    transform: translateX(3px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ÃÅ¸Ã‘â‚¬ÃÂ°ÃÂ²ÃÂ°Ã‘Â ÃÂºÃÂ¾ÃÂ»ÃÂ¾ÃÂ½ÃÂºÃÂ°: ÃÂ°ÃÂºÃÂºÃÂ¾Ã‘â‚¬ÃÂ´ÃÂµÃÂ¾ÃÂ½ Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--faq-bg);
    border: 1.5px solid var(--faq-border);
    border-radius: var(--faq-radius);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__item:hover {
    border-color: #cdd2dc;
}

.faq__item:has(.faq__q[aria-expanded="true"]) {
    border-color: var(--faq-accent);
    box-shadow: 0 8px 28px -12px rgb(111 130 22 / 10%);
}

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--faq-text);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq__q:hover {
    color: var(--faq-accent);
}

.faq__q[aria-expanded="true"] {
    color: var(--faq-accent);
    padding-bottom: 8px;
}

.faq__q-text {
    flex: 1;
}

.faq__q-icon {
    position: relative;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--faq-surface);
    transition: background 0.2s ease, transform 0.3s ease;
}

.faq__q-icon::before,
.faq__q-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--faq-text);
    border-radius: 1px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background 0.2s ease;
}

.faq__q-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__q:hover .faq__q-icon,
.faq__q[aria-expanded="true"] .faq__q-icon {
    background: var(--faq-accent-soft);
}

.faq__q:hover .faq__q-icon::before,
.faq__q:hover .faq__q-icon::after,
.faq__q[aria-expanded="true"] .faq__q-icon::before,
.faq__q[aria-expanded="true"] .faq__q-icon::after {
    background: var(--faq-accent);
}

.faq__q[aria-expanded="true"] .faq__q-icon {
    transform: rotate(180deg);
}

.faq__q[aria-expanded="true"] .faq__q-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* ÃÅ¸ÃÂ»ÃÂ°ÃÂ²ÃÂ½ÃÂ°Ã‘Â ÃÂ°ÃÂ½ÃÂ¸ÃÂ¼ÃÂ°Ã‘â€ ÃÂ¸Ã‘Â Ã‘â‚¬ÃÂ°Ã‘ÂÃÂºÃ‘â‚¬Ã‘â€¹Ã‘â€šÃÂ¸Ã‘Â Ã‘â€¡ÃÂµÃ‘â‚¬ÃÂµÃÂ· grid-template-rows */
.faq__a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq__q[aria-expanded="true"] + .faq__a-wrap {
    grid-template-rows: 1fr;
}

.faq__a {
    overflow: hidden;
    font-size: 16px;
    line-height: 1.65;
    color: var(--faq-text-muted);
    padding: 0 24px;
}

.faq__q[aria-expanded="true"] + .faq__a-wrap .faq__a {
    padding: 0 24px 24px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ÃÂÃÂ´ÃÂ°ÃÂ¿Ã‘â€šÃÂ¸ÃÂ² Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 960px) {
    .faq__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq__aside {
        position: static;
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .faq {
        padding: 56px 16px;
    }

    .faq__q {
        padding: 18px 18px;
        font-size: 15px;
        gap: 14px;
    }

    .faq__q-icon {
        width: 30px;
        height: 30px;
    }

    .faq__q-icon::before,
    .faq__q-icon::after {
        width: 11px;
    }

    .faq__a {
        font-size: 14.5px;
        padding: 0 18px;
    }

    .faq__q[aria-expanded="true"] + .faq__a-wrap .faq__a {
        padding: 0 18px 18px;
    }

    .faq__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq__a-wrap,
    .faq__q-icon,
    .faq__q-icon::before,
    .faq__q-icon::after,
    .faq__cta,
    .faq__cta svg {
        transition: none;
    }
}
    
.menu-item--has-submenu {
    position: relative;
}

.menu-arrow {
    display: inline-block;
    width: .5em;
    height: .5em;
    margin-left: .4em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: .5rem 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 50;
}

.submenu .menu-item {
    display: block;
}

.submenu .menu-link {
    display: block;
    padding: .5rem 1rem;
    white-space: nowrap;
    background: rgba(var(--bs-primary-rgb), .08);
    color: rgb(var(--bs-primary-rgb));
}

.menu-item--has-submenu:hover > .submenu,
.menu-item--has-submenu:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item--has-submenu:hover > .menu-link .menu-arrow,
.menu-item--has-submenu:focus-within > .menu-link .menu-arrow {
    transform: rotate(-135deg) translateY(-2px);
}

.menu-item--has-submenu>.menu-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.menu-item--has-submenu:hover > .menu-link >svg {
    transform: rotate(180deg);
}

.menu-item--has-submenu > .menu-link > svg {
     transition: opacity .2s ease, transform .2s ease, visibility .2s;
}   

.header-socials--mob .social-item {
    width: 44px;
    height: 44px;
}

.price-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 60px;
  background:
    radial-gradient(900px 360px at 90% -10%, rgba(var(--bs-secondary-rgb), .18), transparent 70%),
    radial-gradient(700px 300px at -10% 110%, rgba(var(--bs-primary-rgb), .12), transparent 70%),
    rgba(var(--bs-light-rgb), 0.35);
}
.price-hero__eyebrow {
  display: inline-block;
  padding: .35rem .85rem;
  background: rgba(var(--bs-primary-rgb), .12);
  color: rgb(var(--bs-primary-rgb));
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-hero__title {
  margin-top: 1rem; font-weight: 800;
  font-size: clamp(2rem, 1rem + 3.2vw, 3.4rem);
  line-height: 1.1; letter-spacing: -0.02em;
}
.price-hero__title em { font-style: normal; color: rgb(var(--bs-primary-rgb)); }
.price-hero__lead {
  margin-top: 1.1rem; font-size: 1.1rem; max-width: 720px;
  color: rgba(var(--bs-dark-rgb), .8);
}
.price-hero__meta {
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; margin-top: 1.5rem;
  color: rgba(var(--bs-dark-rgb), .7); font-size: .95rem;
}
.price-hero__meta i { color: rgb(var(--bs-primary-rgb)); margin-right: .35rem; }

/* PRICE NAV (sticky chips) */
.price-nav {
  /* position: sticky; */
  top: 124px;
  z-index: 1020;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(var(--bs-dark-rgb), .08);
}
.price-nav__list {
  display: flex; gap: .5rem; overflow-x: auto;
  padding: 12px 0; margin: 0; list-style: none;
  scrollbar-width: thin;
}
.price-nav__list::-webkit-scrollbar { height: 4px; }
.price-nav__list::-webkit-scrollbar-thumb { background: rgba(var(--bs-primary-rgb), .3); border-radius: 4px; }
.price-nav__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .95rem;
  background: rgba(var(--bs-light-rgb), .8);
  color: rgb(var(--bs-dark-rgb));
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  border: 1px solid transparent;
  transition: all var(--anim);
  white-space: nowrap;
}
.price-nav__link:hover {
  background: rgba(var(--bs-primary-rgb), .12);
  color: rgb(var(--bs-primary-rgb));
}
.price-nav__link.is-active {
  background: rgb(var(--bs-primary-rgb));
  color: #fff; border-color: rgb(var(--bs-primary-rgb));
}

/* SEARCH */
.price-search {
  display: flex; align-items: center; gap: .5rem;
  padding: 1.25rem 0; border-bottom: 1px solid rgba(var(--bs-dark-rgb), .08);
}
.price-search input.form-control {
  border: 1px solid rgba(var(--bs-dark-rgb), .15);
  padding: .65rem 1rem .65rem 2.6rem;
  font-family: var(--bs-font-sans-serif);
  border-radius: 0;
}
.price-search input.form-control:focus {
  border-color: rgb(var(--bs-primary-rgb));
  box-shadow: 0 0 0 .2rem rgba(var(--bs-primary-rgb), .15);
}
.price-search__wrap { position: relative; width: 100%; max-width: 480px; }
.price-search__icon {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: rgba(var(--bs-dark-rgb), .5);
}
.price-search__count {
  color: rgba(var(--bs-dark-rgb), .55); font-size: .9rem;
}

/* CATEGORY */
.price-category {
  padding: 60px 0 30px;
  scroll-margin-top: 130px;
}
.price-category__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.price-category__title {
  font-weight: 700; font-size: clamp(1.5rem, 1rem + 1.4vw, 2.1rem);
  letter-spacing: -0.01em; margin: 0;
  display: inline-flex; align-items: center; gap: .85rem;
}
.price-category__icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--bs-primary-rgb), .12);
  color: rgb(var(--bs-primary-rgb));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.price-category__sub { color: rgba(var(--bs-dark-rgb), .65); font-size: .95rem; }

/* ACCORDION SERVICE */
.price-service { margin-bottom: .85rem; }
.price-service-card {
  border: 1px solid rgba(var(--bs-dark-rgb), .1);
  overflow: hidden;
  background: #fff;
  transition: border-color var(--anim), box-shadow var(--anim);
}
.price-service-card:hover { border-color: rgba(var(--bs-primary-rgb), .4); }
.price-service-card.is-open {
  border-color: rgb(var(--bs-primary-rgb));
  box-shadow: 0 12px 32px rgba(var(--bs-primary-rgb), .1);
}

.price-service__toggle {
  width: 100%; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem; justify-content: space-between;
  background: none; border: none; text-align: left;
  font-family: inherit; color: inherit; cursor: pointer;
  transition: background var(--anim);
}
.price-service__toggle:hover { background: rgba(var(--bs-light-rgb), .5); }
.price-service__toggle-main {
  display: flex; flex-direction: column; gap: .25rem; flex: 1; min-width: 0;
}
.price-service__name {
  font-weight: 600; font-size: 1.05rem; color: rgb(var(--bs-dark-rgb));
  line-height: 1.3;
}
.price-service__from {
  color: rgba(var(--bs-dark-rgb), .6); font-size: .9rem;
}
.price-service__from b { color: rgb(var(--bs-primary-rgb)); font-weight: 600; }
.price-service__chevron {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(var(--bs-primary-rgb), .1);
  color: rgb(var(--bs-primary-rgb));
  display: flex;
  align-items: center;
  padding-top: 2px;
  justify-content: center;
  transition: transform var(--anim), background var(--anim);
}
.price-service-card.is-open .price-service__chevron {
  background: rgb(var(--bs-primary-rgb)); color: #fff; transform: rotate(180deg);
}

.price-service__body {
  max-height: 0; overflow: hidden;
  transition: max-height var(--anim);
}
.price-service-card.is-open .price-service__body { max-height: 5000px; }
.price-service__body-inner {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(var(--bs-dark-rgb), .08);
}
.price-service__note {
  margin: 1.25rem 0; padding: .85rem 1rem;
  background: rgba(var(--bs-light-rgb), .55);
  border-left: 3px solid rgb(var(--bs-primary-rgb));
  border-radius: 6px; font-size: .92rem; color: rgba(var(--bs-dark-rgb), .8);
}

.price-block { margin-top: 1.5rem; }
.price-block__title {
  font-weight: 600; font-size: 1rem; margin-bottom: .85rem;
  color: rgb(var(--bs-dark-rgb));
  display: inline-flex; align-items: center; gap: .5rem;
}
.price-block__title i { color: rgb(var(--bs-primary-rgb)); }

.price-table {
  width: 100%; border-collapse: collapse;
}
.price-table tr {
  border-bottom: 1px dashed rgba(var(--bs-dark-rgb), .12);
}
.price-table tr:last-child { border-bottom: none; }
.price-table td {
  padding: .7rem .25rem; vertical-align: top;
}
.price-table td:first-child {
  color: rgba(var(--bs-dark-rgb), .85); font-size: .95rem;
}
.price-table td:last-child {
  text-align: right; white-space: nowrap; padding-left: 1rem;
  font-weight: 600; color: rgb(var(--bs-primary-rgb)); font-size: .95rem;
}
.price-table tr.is-complex td:first-child { font-weight: 500; color: rgb(var(--bs-dark-rgb)); }
.price-table tr.is-complex td:last-child { color: rgb(var(--bs-secondary-rgb)); }
@media (max-width: 575.98px) {
  .price-table td { padding: .65rem .15rem; }
  .price-table td:last-child { font-size: .9rem; }
}

.price-depends-list {
  display: flex; flex-wrap: wrap; gap: .4rem .5rem;
  list-style: none; padding: 0; margin: .5rem 0 0;
}
.price-depends-list li {
  padding: .3rem .75rem;
  background: rgba(var(--bs-light-rgb), .7);
  color: rgba(var(--bs-dark-rgb), .85);
  border-radius: 6px; font-size: .85rem;
}

.price-features-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .5rem 1rem; list-style: none; padding: 0; margin: .5rem 0 0;
}
.price-features-list li {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(var(--bs-dark-rgb), .85); font-size: .92rem;
}
.price-features-list i { color: rgb(var(--bs-secondary-rgb)); font-size: 1.1rem; }

.price-service__cta {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem;
  padding-top: 1.25rem; border-top: 1px solid rgba(var(--bs-dark-rgb), .08);
}

/* CTA SECTION */
.price-cta {
  margin: 80px 0 60px; padding: 60px 0;
  background:
    linear-gradient(135deg, rgba(var(--bs-primary-rgb), .95), rgba(var(--bs-secondary-rgb), .95)),
    rgb(var(--bs-primary-rgb));
  color: #fff; border-radius: 24px;
}
.price-cta__title {
  font-weight: 700; font-size: clamp(1.6rem, 1rem + 2vw, 2.4rem);
  letter-spacing: -0.01em; margin-bottom: 1rem; line-height: 1.15;
}
.price-cta__text { font-size: 1.05rem; opacity: .9; margin-bottom: 2rem; max-width: 560px; }
.price-cta .form-control {
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: #fff; padding: .8rem 1rem; border-radius: 10px;
  font-family: var(--bs-font-sans-serif);
}
.price-cta .form-control::placeholder { color: rgba(255,255,255,.6); }
.price-cta .form-control:focus {
  background: rgba(255,255,255,.2);
  border-color: #fff; box-shadow: none; color: #fff;
}
.price-cta .btn-light {
  background: #fff; color: rgb(var(--bs-primary-rgb));
  font-weight: 600; padding: .8rem 1.75rem; border-radius: 10px;
  border: none;
}
.price-cta .btn-light:hover { background: rgba(var(--bs-light-rgb), 1); }
.price-cta__note { font-size: .85rem; opacity: .8; margin-top: .85rem; }

/* FOOTER */
.price-footer {
  background: rgb(var(--bs-dark-rgb));
  color: rgba(255,255,255,.8);
  padding: 50px 0 30px;
}
.price-footer a { color: #fff; text-decoration: none; }
.price-footer a:hover { color: rgb(var(--bs-secondary-rgb)); }
.price-footer__title {
  font-weight: 600; color: #fff; margin-bottom: 1rem; font-size: 1rem;
}
.price-footer__bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .88rem; opacity: .7;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}

/* Empty state */
.price-empty-state {
  text-align: center; padding: 4rem 1rem;
  color: rgba(var(--bs-dark-rgb), .6);
}
.price-empty-state i { font-size: 3rem; color: rgba(var(--bs-primary-rgb), .4); }

/* Print */
@media print {
  .price-header, .price-nav, .price-search, .price-cta, .price-footer, .price-service__chevron, .price-service__cta { display: none !important; }
  .price-service-card { break-inside: avoid; }
  .price-service__body { max-height: none !important; }
}
    
@media (min-width: 1800px) {
    .container {
        max-width: 1740px;
    }
}

@media (max-width: 1799px) {
    :root {
        --zoom: 1.2;
    }
    
    body {
        font-size: calc(14px * var(--zoom));
    }
    
    .btn {
        font-size: calc(14px * var(--zoom));
    }
    
    .h4 {
        font-size: calc(16px * var(--zoom));
    }
    
    .service-item {
        min-height: 260px;
    }
    
    .client-types__section-title {
        font-size: calc(16px * var(--zoom));
    }
    
    .guarantee-item__caption {
        min-height: 124px;
    }
    .header-socials {
         display: none!important;   
    }
}

@media (max-width: 1399px) {
    :root {
        --zoom: 1;
    }
    
    .hero {
        min-height: 670px;
    }
    
    .hero__middle, .hero__right {
        grid-column: 6 span;
    }

    .services-col:nth-child(3n+1), 
    .services-col:nth-child(3n + 2),
    .services-col:nth-child(3n) {
        grid-column: 4 span;
    }
}

@media (max-width: 991px) {
    .logo__description {
        font-size: 12px;
    }
    
    .hero__title {
        font-size: calc(32px * var(--zoom));
    }

    .services-col:nth-child(3n+1), 
    .services-col:nth-child(3n + 2),
    .services-col:nth-child(3n) {
        grid-column: 6 span;
    }
    
    .services-grid--inner .services-col {
        grid-column: 6 span!important;
    }
    
    .services-col--title {
        grid-column: 12 span!important;
    }
    
    .services-col:nth-child(2n + 1) .service-item {
        background-color: transparent;
    }
    
    .services-col:nth-child(1) .service-item {
        background-color: rgb(var(--bs-light-rgb));
    }
    
    .partner-item__image {
        height: 45px;
    }
    
    .guarantee-item__image {
        height: 300px;
    }
    
    .guarantee-item__caption {
        min-height: 111px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: calc(12px * var(--zoom));
    }
    
    .hero {
        min-height: 490px;
    }
    
    .title {
        font-size: calc(20px * var(--zoom));
    }
    
    .subtitle {
        font-size: calc(14px * var(--zoom));
    }
    
    .hero__title {
        font-size: calc(24px * var(--zoom));
    }
    
    .hero__middle, .hero__right {
        grid-column: 12 span;
    }
    
    .hero__bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgb(var(--bs-secondary-rgb), 0.9), rgb(var(--bs-secondary-rgb), 0.3));
    }
    
    .hero__title {color: var(--bs-white);}
    
    .myths-waiting__text {
        font-size: calc(16px * var(--zoom));
    }
    
    .services-col:nth-child(3n+1), .services-col:nth-child(3n + 2), .services-col:nth-child(3n) {
        grid-column: 12 span;
    }
    
    .services-col:nth-child(2n + 1) {
        background-color: rgb(var(--bs-light-rgb));
    }
    
    .services-grid--inner .services-col {
        grid-column: 12 span!important;
    }
    
    .service-item {
        min-height: 160px;
    }
    
    .client-types__item {
        font-size: calc(16px * var(--zoom));
    }
    
    .cookie-warning--active {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 8px;
        bottom: 0;
        padding: 16px 12px 12px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cookie-warning__text {
        margin-right: 0;
        font-size: 14px;
    }

    .cookie-warning__apply {
        width: 100%;
    }
    .stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stat-item:last-child { border-bottom: 0; }
    .director-photo { width: 140px; height: 140px; margin-right: auto; }
    .price-hero {
        padding-top: 60px;
    }
    .price-category {
        scroll-margin-top: 60px;
    }
}

@media (max-width: 575px) {
    .header .logo__description {
        display: none;
    }
}