/* ====== BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
section {
    background-color: var(--soft-white);
}
body {
    font-family: 'Gilroy', sans-serif;
    color: #000;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
.container {
    width: 100%;
    max-width: 1440px;
    padding: 0 30px;
    margin: 0 auto;
}
.h2 {
    font-weight: 500;
    font-size: 64px;
    line-height: 110.00000000000001%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: var(--dark-blue);
    margin-bottom: 60px;
}
.h2 span {
    color: var(--soft-blue);
}
/* ====== HERO (общий фон и для шапки) ====== */
.hero {
    background: url('../assets/img/hero.jpg') no-repeat center/cover;
    color: #000;
    position: relative;
    background-position-y: 30%;
    padding-bottom: 100px;
    background-color: #ddddd1;
}
/* ==========================
   HEADER
   ========================== */
.header {
    padding-top: 10px;
    background: transparent;
    display: flex;
    align-items: center;
    border: none;
    color: #000;
    position: relative;
    z-index: 10;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.header__left {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    padding: 15px 30px;
    border-radius: 40px;
}
.header__logo {
    height: 40px;
    width: auto;
}
.header__contacts {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    border-left: 1px solid var(--soft-blue);
    padding-left: 15px;
}
.header__phone {
    color: var(--soft-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 5px;
}
.header__mail {
    color: inherit;
    font-weight: 400;
    font-size: 16px;
    line-height: 99%;
    opacity: 0.9;
    text-decoration: none;
}
.header__link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header__link .btn {
    display: flex;
    align-items: center;
    gap: 40px;
}
/* ==========================
   NAVIGATION
   ========================== */
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav a:hover {
    color: var(--soft-blue);
}
/* ==========================
   BUTTON
   ========================== */
.btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--soft-blue);
    color: var(--soft-blue);
    padding: 23px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease;
}
.btn:hover {
    background: var(--dark-blue);
}
/* .btn--small {
    padding: 10px 20px;
    font-size: 14px;
} */
/* ==========================
   HERO CONTENT
   ========================== */
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    max-height: 750px;
}
.hero__content {
    max-width: 450px;
    color: #000;
    grid-row: 2 / 3;
}
.hero__content h1 {
    font-weight: 600;
    font-size: 62px;
    line-height: 100%;
    letter-spacing: -3%;
    vertical-align: middle;
    color: var(--dark-blue);
    margin-bottom: 30px;
}
.hero__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.hero__form input {
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    background: #fff;
}
.btn-hero {
    background-color: var(--soft-blue);
    color: #fff;
}
/* ==========================
   STATS
   ========================== */
.hero__stats {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    background: rgba(71, 109, 139, 0.5);
    backdrop-filter: blur(30px);
    padding: 15px 30px;
    border-radius: 20px;
    color: #fff;
    grid-column: 2 / 3;
    margin-top: auto;
    margin-left: auto;
    width: fit-content;
    height: min-content;
    grid-row: 3 / 4;
    backdrop-filter: blur(15px);
}
.stat {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    gap: 15px;
}
.stat__number {
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    display: block;
    color: #fff;
}
.stat__label {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0%;
    white-space: pre-line;
    vertical-align: middle;
}
.header__call {
    display: none;
}
.header__burger {
    display: none;
}
/* Page two */
.header__inner-about{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0px 20px;
    border-radius: 40px;
}
.header__left-about{
    display: flex;
    align-items: center;
    gap: 30px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: transparent;
    padding: 15px 30px;
    border-radius: 40px;
}
.hero-2{
    color: #000;
    position: relative;
    background-position-y: 30%;
    padding-bottom: 20px;
    background-color: var(--soft-white);
}
.container-page-two {
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
    background-color: var(--soft-white);
}


    /* Хлебные крошки */

.search-form{
	width:100%;
}

.breadcrumbs {
    padding: 20px;
    font-size: 14px;
    color: #666;
}
.breadcrumbs a {
    color: #A9A9A9;
    text-decoration: none;
}
.breadcrumbs span {
    margin: 0 5px;
}
.advantages-2{
    padding-bottom: 40px;
    padding-top: 20px;
}
.suit__card-btn-2{
    color: var(--soft-blue);
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -3%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    display: flex;
    border-radius: 40px;
    width: 176px;
    height: 52px;
    background-color: #fff; 
    align-items: center;
    border: 3px solid var(--soft-blue);
}


.suit__card-btn-3{
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -3%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    display: flex;
    border-radius: 40px;
    width: 186px;
    height: 52px;
    background-color: var(--soft-blue); 
    gap: 10px;
    align-items: center;
}
.suit__card-btn-3 svg{
    width: 40px;
}

.suit__card-btn-4{
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -3%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    display: flex;
    border-radius: 40px;
    width: 100%;
    height: 52px;
    background-color: var(--soft-blue); 
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.suit__card-btn-5{
    padding-right:5px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -3%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    display: flex;
    border-radius: 40px;
    width: 186px;
    height: 52px;
    background-color: var(--soft-blue);
    gap: 10px;
    align-items: center;
}

/* Боковая панель фильтров */
.sidebar {
    background: white;
    height: fit-content;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px var(--shadow);
}

.invisible-button{
    display: none;
}

.main-content{
}

.filter-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--soft-blue);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.filter-button:hover {
    background-color: #3a5a7b;
}


.filter-panel {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background-color: white;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: left 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}
.filter-panel.active {
  left: 0;
}


.filter-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.filter-panel-header h3 {
    margin: 0;
    color: #333;
}

.close-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.close-button:hover {
    color: #333;
}



.filter-label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: #2c3e50;
}

.filter-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.dove-checkbox {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
    transition: transform 0.15s ease;
}

.dove-checkbox {
    background-image: url('/wp-content/themes/Stasy-Aristo/assets/img/Done.svg');
}

.filter-checkbox input[type="checkbox"]:checked ~ .dove-checkbox {
    background-image: url('/wp-content/themes/Stasy-Aristo/assets/img/galka.svg');
}
.filter-group .filter-content {
    display: none;
    margin-top: 10px;
    padding-left: 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.filter-group .filter-content.is-scrollable {
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

.filter-group-search {
    width: 100%;
    margin: 0 0 12px;
    padding: 10px 12px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    font-size: 15px;
    color: #273648;
    background: #fff;
    box-sizing: border-box;
}

.filter-checkbox {
    width: 100%;
    min-width: 0;
}

.dove-checkbox {
    flex: 0 0 20px;
}

.dove-checkbox-text {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.filter-group-search:focus {
    outline: none;
    border-color: #9eb28b;
}

.filter-group-search::placeholder {
    color: #9da3a8;
}

.filter-group .filter-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-group .toggle-icon {
    font-weight: bold;
    color: #476D8B;
    min-width: 20px;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Верхняя панель поиска и сортировки */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}
.search-box {
    width: 800px;
    padding-left: 10px;
    display: flex;
    flex: 1;
    align-items: center;
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 10px;
}

.sort-box-grid{

}

.search-box input {
    border: none;
    width: 100%;
    padding: 20px 5px;
    font-size: 14px;
    outline: none;
    border-radius: 10px;
    transition: border-color 0.2s;
}
.sort-box {
    position: relative;
    display: inline-block;
}

.sort-toggle-btn {
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
}



.sort-toggle-btn svg{
	fill:none;
}

.promo-text-box{
	width:35vw;
}

.promo-text{
	width:21vw;
}

.sort-clear-btn {
	display: block;
	margin-top: 12px;
	padding: 6px 0;
	color: #d9534f;
	font-size: 13px;
	text-decoration: none;
	text-align: center;
	border: 1px solid #476D8B;
	padding-top: 8px;
	border-radius:20px;
}

.sort-clear-btn:hover {
	color: #c9302c;
}

.filter-clear-btn {
    width: 100%;
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid #476D8B;
    border-radius: 24px;
    background: #fff;
    color: #476D8B;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.filter-clear-btn:hover {
    background: #476D8B;
    color: #fff;
}

.sort-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 200px;
    padding: 12px;
    margin-top: 4px;
}

.sort-option {
    display: block;
    margin: 6px 0;
    cursor: pointer;
}

.sort-option input[type="radio"] {
    margin-right: 8px;
}

.sort-apply-btn {
    width: 100%;
    margin-top: 10px;
    padding: 6px;
    background: #476D8B;
    color: white;
    border: none;
    cursor: pointer;
}
/* Карточки специалистов */
.specialist-card {
    max-width: 1069px;
    width: 100%;
}
.photo-section {
    position: relative;
    border-radius: 16px;
    width: 428px;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.photo-section img {
    width: 100%;
    height: 100%;
	max-height:470px;
    object-fit: cover;
	object-position:top;
}
.tags {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;

    gap: 8px;
}
.tag {
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    max-width: 260px;
    color: var(--soft-blue);
    width: max-content;
}

.tag-e{
	width: max-content;
	background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--soft-blue);
}
.rating {
    position: absolute;
    top: 16px;
    right: 16px;
        background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 20px;
}


.filter-tag{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--soft-blue);
    font-size: 16px;
    padding-top: 20px;
    padding-left: 272px;
    
}
.filter-tag-a{
    color: var(--soft-blue);
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid hsla(205, 34%, 41%, 0.2);
    background-color: white;
    padding: 3px 15px;
}
.rating span {
    color: var(--soft-blue);
    font-size: 16px;
}



.info-section {
    width: 641px;
}
.name {
    margin-bottom: 12px;
}
.description {
    margin-bottom: 20px;
}
.directions-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}
.directions {
    margin-bottom: 20px;
}
.direction {
    padding: 6px 14px;
    font-size: 14px;
}
.price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.price-label {
    font-size: 16px;
    font-weight: 600;
    color: #555;
}
.price {
    font-size: 24px;
    font-weight: 600;
    color: var(--soft-blue);
}
.price-unit {
    font-size: 14px;
    color: var(--soft-blue);
    font-weight: 300;
    margin-left: 4px;
}
.buttons {
	
    display: flex;
    gap: 12px;
}
.btn {
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-outline {
    border: 2px solid #3498db;
    background: transparent;
    color: #3498db;
}
.btn-outline:hover {
    background: #3498db;
    color: white;
}
.btn-primary {
    background: #3498db;
    color: white;
    border: none;
}
.btn-primary:hover {
    background: #2980b9;
}
.arrow {
    width: 16px;
    height: 16px;
    fill: currentColor;
}



/* Пагинация */


.page-numbers{
	display:flex;
	list-style:none;
	gap:10px;
}


.pagination .current,
.pagination a:hover {
	border-radius:5px;
	padding: 10px 20px;
    border: 1px solid hsla(205, 34%, 41%, 0.2);
    background: #476D8B;
    color: white;
    border-color: #476D8B;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
    gap: 15px;
    align-items: center;
}
.pagination a{
    background-color: white;
    color: var(--soft-blue);
    border-radius: 5px;
    padding: 10px 20px;
    border: 1px solid hsla(205, 34%, 41%, 0.2);
}
.pagination a:hover {
    background-color:  var(--soft-blue);
    color: white;
}
.pagination .active {
    color: white;
    background-color: var(--soft-blue);
}
.secret-button{
    display: none;
}

.seo-text-main{
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
}
.seo-span{
    color:#224065;
}
.seo-text-h2{
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    color:var(--dark-blue);
    width: 268px;
    display: grid;
}
.seo-text-p{
    width: 590px;
    color: var(--dark-blue);
    display: grid;
}
/* ==========================
   BURGER MENU OVERLAY
   ========================== */
.header__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    /* <-- чтобы меню не прокручивалось */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__menu.active {
    opacity: 1;
    visibility: visible;
}
/* Ссылки */
.header__menu a {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}
.header__menu a:hover {
    color: var(--soft-blue);
}
/* Кнопка закрытия */
.header__menu-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.3s ease;
}
.header__menu-close:hover {
    color: var(--soft-blue);
    transform: rotate(90deg);
}
/* Блокировка прокрутки основного контента */
body.no-scroll {
    overflow: hidden;
}
/* Suit Section */
.suit__card {
    padding: 140px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.suit__card .h2 {
    text-align: center;
}
.suit__card-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -1%;
    text-align: center;
}
.suit__card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 40px;
}
.suit__card-list-item {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    min-height: 365px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    height: 415px;
    transition: all 0.4s ease;
}
.suit__card-list-item:nth-child(2) {
    margin-top: 50px;
}
.suit__card-list-item_number {
    color: rgba(239, 127, 26, 0.5);
}
/* .suit__card-list-item_content  */
.suit__card-list-item_content-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -3%;
    vertical-align: middle;
    margin-bottom: 30px;
}
.suit__card-list-item_content-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 30px;
    color: var(--dark-blue);
}
.suit__card-btn {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -3%;
    padding: 15px 30px;
    display: block;
    border-radius: 40px;
    width: fit-content;
    background-color: var(--soft-blue);
}
.suit__card-list-item svg path {
    transition: all 0.4s ease;
}
.suit__card-list-item_content-title,
.suit__card-list-item_content-description,
.suit__card-btn {
    transition: all 0.4s ease;
}
/* === HOVER-СОСТОЯНИЕ === */
.suit__card-list-item:hover {
    background-color: var(--soft-blue);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* SVG — внутренняя заливка становится белой */
.suit__card-list-item:hover svg path {
    fill: #fff;
}
/* Тексты — белые */
.suit__card-list-item:hover .suit__card-list-item_content-title,
.suit__card-list-item:hover .suit__card-list-item_content-description {
    color: #fff;
}
/* Кнопка — фон белый, текст тёмный */
.suit__card-list-item:hover .suit__card-btn {
    background-color: #fff;
    color: var(--dark-blue);
}
/* Services Section */
.services {
    padding: 80px 0 120px;
    background-color: #F0ECE8;
}
.services__main-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
}
.services__main-block::before {
    content: "";
    height: 104%;
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 30px;
    right: -87px;
    background-color: #6A635D;
}
.services__main-block-content {
    background-image: url('../assets/img/services.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.services__background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.services__blur-overlay {
    position: absolute;
    left: -45%;
    top: -22%;
    width: 69%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 50%;
    transform: rotate(37deg);
}
.services__main-block-content .h2 {
    white-space: pre-line;
    color: #fff;
    position: relative;
    z-index: 3;
}
.services__main-block-description {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 3px;
    padding: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    vertical-align: middle;
    width: 60%;
    align-self: flex-end;
    position: relative;
    z-index: 3;
}
.services__right_container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 60px;
    z-index: 2;
}
/* .services__right-list-block  */
.services__right-title {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: #fff;
}
.services__right-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.services__right_item {
    position: relative;
    background-color: rgba(255, 254, 252, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-height: 110px;
    padding: 15px 10px;
    transition:
        background-color 0.5s ease,
        background-image 0.5s ease,
        transform 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.services__right_item:nth-child(5) {
    grid-column: 1/3;
}
/* Заголовок */
.services_-right_item-title {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -1%;
    margin-bottom: 30px;
    transition: color 0.4s ease;
    z-index: 1;
    position: relative;
}
/* Кнопка */
.services__right_item-btn {
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    padding: 10px;
    width: fit-content;
    transition: background-color 0.4s ease, transform 0.3s ease;
    z-index: 1;
    position: relative;
    align-self: flex-end;
}
/* Стрелка внутри кнопки */
.services__right_item-btn svg {
    transition: transform 0.4s ease, stroke 0.4s ease;
}
/* ===== АНИМАЦИИ ПРИ НАВЕДЕНИИ ===== */
.services__right_item:hover {
    background-color: #fff;
    background-image: url('../assets/img/service-card.svg');
}
.services__right_item:hover .services_-right_item-title {
    color: var(--soft-blue);
}
.services__right_item:hover .services__right_item-btn {
    background-color: var(--soft-blue);
    fill: #fff;
}
.services__right_item:hover .services__right_item-btn svg {
    transform: rotate(45deg);
    stroke: #fff;
}
/* для самой стрелки */
.services__right_item:hover .services__right_item-btn svg path {
    fill: #fff;
    stroke: #fff;
}
/* Tariff Section */
.tariff {
    padding: 120px 0;
    background: linear-gradient(to top, #E2DBD5 40%, #F0ECE8 30%);
}
.tariff .h2 {
    text-align: center;
}
.tariff__list {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.tariff__list-item {
    background-color: #6A635D;
    padding: 40px 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    min-height: 492px;
    max-width: 350px;
}
.tariff__item-title {
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
}
.line {
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin: 30px 0 15px;
}
.tariff__item-cost {
    font-weight: 400;
    font-size: 19px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
}
.tariff__item-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tariff__item-description-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: #fff;
}
/* Client Suet Section */
/* ==== Clients Suit Section ==== */
.clients-suit {
    background-color: #E2DBD5;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 140px 0;
}
.clients-suit__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}
.clients-suit__info {
    flex: 0 0 33%;
}
.clients-suit__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #1a1a1a;
    margin-top: 25px;
}
.clients-suit__slider {
    flex: 1;
}
.clients-suit__card {
    background: rgba(255, 255, 255, 0.8);
    min-height: 410px;
    padding: 25px;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 2px;
    user-select: none;
    justify-content: space-between;
}
.clients-suit__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 30px;
}
.clients-suit__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #848484;
}
.clients-suit__arrows {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}
.clients-suit__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--soft-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.clients-suit__arrow:hover {
    background-color: var(--dark-blue);
    transform: scale(1.05);
}
.clients-suit__arrow svg {
    rotate: 45deg;
}
.clients-suit__arrow--prev svg {
    rotate: -135deg;
}
.clients-suit__arrow svg path {
    pointer-events: none;
    fill: #fff;
    stroke: #fff;
}
/* Specialist Section */
.specialists {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 140px 0;
}
.specialists__container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.specialists__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}
.specialists__header .h2 {
    white-space: pre-line;
    margin-bottom: 0;
}
.specialists__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #1a1a1a;
    margin-top: 25px;
}
.specialists__slider {
    width: 100%;
}

.specialists__card {
    display: grid !important;
    min-height: 410px;
    grid-template-columns: 1fr 1fr;
    border-radius: 2px;
    user-select: none;
    overflow: hidden;
}
.specialists__image {
    flex: 0 0 50%;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.specialists__tab {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    color: var(--soft-blue);
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0%;
}
.specialists__tab--left {
    top: 20px;
    left: 20px;
}
.specialists__tab--left:nth-child(2) {
    top: 70px;
}
.specialists__tab--right {
    top: 20px;
    right: 20px;
}
.specialists__content {
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    background-color: #FFFFFF;
}
.specialists__text-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.specialists__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--dark-blue);
}
.specialists__directions-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 15px;
}
.specialists__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.specialists__tag {
    background-color: #EAECEC;
    color: var(--soft-blue);
    padding: 12px 15px;
    border-radius: 20px;
    font-size: 16px;
}
.specialists__card-btn {
    display: inline-block;
    background-color: var(--soft-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.specialists__card-btn:hover {
    background-color: var(--dark-blue);
}
.specialist__image {
    object-position: 50% 25%;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
    max-height: 515px;
    width: 100%;
}
/* Where Start Section */
.where-start {
    padding: 100px 0;
}
.where-start__container {
    background-color: var(--soft-blue);
    padding: 80px 40px 20px 40px;
    border-radius: 20px;
}
.where-start__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
    align-items: start;
}
/* Заголовок */
.where-start__header {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}
.where-start__header .h2 {
    color: white;
}
/* Карточки */
.where-start__card {
    background: rgba(108, 138, 162, 1);
    border: 1px solid rgba(71, 109, 139, 0.2);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 370px;
    justify-content: space-between;
}
/* Позиционирование карточек в сетке */
.where-start__card:nth-child(2) {
    position: relative;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.where-start__card:nth-child(3) {
    position: relative;
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}
.where-start__card:nth-child(6) {
    position: relative;
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}
.where-start__card:nth-child(7) {
    position: relative;
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}
/* Заглушка для иконки */
.where-start__icon {
    width: 60px;
    height: 60px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-blue);
    font-weight: bold;
}
.where-start__content-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.where-start__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -3%;
    vertical-align: middle;
    color: #FFFFFF;
}
.where-start__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #FFFFFF;
    margin: 0;
}
/* Кнопка */
.where-start__button-block {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    align-self: flex-end;
}
.where-start__btn-specialists{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--soft-blue);
    gap: 50px;
    color: #fff;
    transition: background-color 0.3s ease;
    cursor: pointer;
    font-size: 18px;
}
.where-start__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    gap: 50px;
    color: var(--soft-blue);
    transition: background-color 0.3s ease;
    cursor: pointer;
    font-size: 18px;
    white-space: nowrap;
}
.where-start__btn:hover {
    background-color: var(--dark-blue);
}
/* Пустые области */
.where-start__empty {
    /* Пустые ячейки сетки */
}
.where-start__empty:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}
.where-start__empty:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.where-start__button-block-mob {
    display: none;
}
.where-start-svg-1{
    padding-top: 20px;
    padding-left: 150px;
}

/* About Section */
.about {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 140px 0;
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}
/* Левая часть - контент */
.about__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 80px;
    height: 100%;
    background-color: #FFFFFF;
    /* Белый фон */
    border-radius: 20px;
    padding: 40px;
}
.about__button-block .suit__card-btn {
    height: 70px;
    display: flex;
    align-items: center;
    gap: 70px;
    padding-inline: 30px 10px;
}
.about__content .h2 {
    white-space: pre-line;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 62px;
    line-height: 80%;
    letter-spacing: -4%;
    vertical-align: middle;
}
.about__text-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}
.about__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--dark-blue);
    margin: 0;
}
.about__button-block {
    margin-top: auto;
}
/* Правая часть - изображение с текстом поверх */
.about__image-section {
    display: flex;
    border-radius: 20px;
    background-position: 20% 30%;
    height: 100%;
    flex-direction: column;
    background-size: cover;
    background-image: url(/assets/img/specialist.jpg);
}
.about__image-wrapper {
    position: relative;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about__image {
    object-position: 50% 25%;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
    max-height: 515px;
    height: auto;
}
/* Текст поверх изображения */
.about__overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    text-align: left;
    /* Выровнен слева */
    margin: 0 15px 20px 15px;
    border-radius: 15px;
    backdrop-filter: blur(30px)
}
.about__caption-title {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}
.about__caption {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
    margin: 0;
}
/* Advantages Section */
.advantages {
    padding: 100px 0;
}
.advantages__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    min-height: 600px;
}
/* Первый блок - декоративный с заголовком */
.advantages__header-block {
    background-color: var(--soft-blue);
    border-radius: 20px;
    display: block;
    padding: 0px 30px;
    padding-top: 80px;
}
.advantages__header-block-svg{
    padding-top: 20px;
	height:auto;
}
.invisible-svg{
    display: none;
}
.advantages__title {
    color: white;
    font-weight: 600;
    font-size: 62px;
    line-height: 80%;
    letter-spacing: -4%;
    vertical-align: middle;
    margin: 0;
}
.advantages__title span {
    color: #87AFCE;
}
/* Второй блок - карточки */
.advantages__cards-block {
    background-color: #EAECEC;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
}

.close-filters-btn{
	display:none;
}

.advantages__cards-grid {
	background-color:#EAECEC;
	padding:20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}
/* Карточки */
.advantages__card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantages__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.advantages__icon {
    width: 60px;
    height: 60px;
    background-color: color-mix(in srgb, var(--soft-blue) 10%, white 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}
.advantages__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}
.advantages__card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -1%;
    color: var(--dark-blue);
    margin: 0;
}
.advantages__card-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #666;
    margin: 0;
}
/* Promo Section */
.promo {
    padding: 100px 0;
}
.promo_block {
    background-color: var(--soft-blue);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
}
.promo-h2 {
    color: #87AFCE;
    font-weight: 600;
    font-size: 62px;
    line-height: 80%;
    letter-spacing: -4%;
    vertical-align: middle;
    margin: 0;
    white-space: pre-line;
}
.promo-h2 span {
    color: #fff;
}
.promo-text {
    align-self: center;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
    white-space: pre-line;
}
.promo_block .where-start__button-block {
    align-self: flex-start;
}
/* Review Section */
.review {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}
.review__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}
.review__header .h2 {
    white-space: pre-line;
}
.review__header .h2 span {
    color: rgba(34, 64, 101, 0.7);
}
.review__header-content {
    flex: 1;
}
.review__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #1a1a1a;
    margin-top: 25px;
    margin-bottom: 0;
}
.review__arrows {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    align-self: center;
}
.review__arrow {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--soft-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.review__arrow:hover {
    background-color: var(--dark-blue);
    transform: scale(1.05);
}
.review__arrow svg {
    rotate: 45deg;
}
.review__arrow--prev svg {
    rotate: -135deg;
}
.review__arrow svg path {
    pointer-events: none;
    fill: #fff;
    stroke: #fff;
}
/* Слайдер */
.review__slider {
    width: 100%;
}
.review__card {
    background: rgba(255, 255, 255, 0.8);
    min-height: 280px;
    padding: 25px;
    border-radius: 20px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    user-select: none;
}
.review__card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}
.review__client-info {
    flex: 1;
}
.review__client-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -3%;
    vertical-align: middle;
    color: var(--dark-blue);
    margin: 0 0 20px 0;
}
.review__date {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--dark-blue);
    margin: 0;
}
.review__stars {
    font-size: 24px;
    color: var(--soft-blue);
    flex-shrink: 0;
}
.review__text {
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--dark-blue);
    margin-top: auto;
}
.review__container .about__button-block {
    margin-left: auto;
    margin-top: 40px;
}
/* Article Section */
.article {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}
.article__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.article__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}
.article__header .h2 {
    white-space: pre-line;
}
.article__header .h2 span {
    color: rgba(34, 64, 101, 0.7);
}
.article__arrows {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    align-self: center;
}
.article__arrow {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--soft-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.article__arrow:hover {
    background-color: var(--dark-blue);
    transform: scale(1.05);
}
.article__arrow svg {
    rotate: 45deg;
}
.article__arrow--prev svg {
    rotate: -135deg;
}
.article__arrow svg path {
    pointer-events: none;
    fill: #fff;
    stroke: #fff;
}
/* Слайдер */
.article__slider {
    width: 100%;
}
.article__card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
    user-select: none;
    min-height: 480px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.article__image {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.article__tab {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.5);
backdrop-filter: blur(30px);
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    color: var(--soft-blue);
    z-index: 2;
}
.article__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.article__card:hover .article__img {
    transform: scale(1.05);
}
.article__content {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}
.article__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--dark-blue);
    margin: 0;
}
.article__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--dark-blue);
    margin: 0;
}
.article__container .about__button-block {
    margin-left: auto;
    margin-top: 40px;
}
.faq {
    padding: 120px 20px;
}
.faq .h2 {
    white-space: pre-line;
}
/* Grid контейнер для двух колонок */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
/* FAQ Item */
.faq-item {
    background: #EAECEC;
    /* Фон вопросов */
    border-radius: 20px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    height: 100%;
}
.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Вопрос */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 15px;
}
.question-text {
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -1%;
    color: var(--dark-blue);
    flex: 1;
}
/* Кнопка плюс/крестик */
.faq-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--soft-blue);
    /* Белый фон кнопки */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    border: none;
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #fff;
    /* Синий цвет линий */
    transition: all 0.3s;
}
.faq-toggle::before {
    transform: rotate(0deg);
}
.faq-toggle::after {
    transform: rotate(90deg);
}
.faq-toggle.active::before {
    transform: rotate(45deg);
    background-color: var(--soft-blue);
}
.faq-toggle.active::after {
    transform: rotate(-45deg);
    background-color: var(--soft-blue);
}
.faq-toggle.active {
    background-color: #fff;
    /* Остается белым при активном состоянии */
    border-color: var(--soft-blue);
}
/* Ответ — плавное раскрытие */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease, margin 0.4s ease;
    margin: 0;
    padding: 0;
}
.faq-answer.open {
    max-height: 500px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #D1D5DB;
}
.faq-answer p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -1%;
    color: #666;
    margin: 0;
}


/* Адаптивная верстка */

@media(max-width:1300px){
    .sidebar{
        display: none;
    }
    .main-content{
        width: 95vw;
    }
    .specialist-card{
        max-width: 95vw;
    }
    .info-section{
        width: 62vw;
    }
}

/* Для 1200 и меньше */
@media (max-width: 1200px){
	.filter-title{
		padding-top:20px;
	}
	.sidebar  {
		display:block;
        position: fixed;
        top: 0;
        left: -100%; /* полностью за пределами экрана */
        width: 70%;
		height:100%;
        background: white;
        z-index: 999;
        padding: 20px;
        overflow-y: auto;
        transition: left 0.3s ease; /* плавное выдвижение */
    }

    /* Когда активен — выезжает */
    .sidebar.active {
        left: 0;
    }
    .advantages__grid{
        display: block;
    }
    .advantages__title{
        padding-bottom: 30px;
    }
    .advantages__header-block-svg{
        display: none;
    }
    .top-bar{
        display: grid;
    }
    .search-box-block{
        grid-column-start: 1;
        grid-column-end: 3;
    }
    .search-box{
        width: 95vw;
    }
    .sort-box-grid{
        display: flex;
        justify-content: end;
    }
    .sort-box{
        display: flex;
        justify-content: space-between;
    }
    .main-content{
        width: 95vw;
    }
    .invisible-button{
        display: flex;
        grid-row-start: 2;
        grid-row-end: 2;
    }
    .specialist-card{
        max-width: 95vw;
    }
    .info-section{
        width: 80vw;
    }
}

/* Для 1024 и меньше */
@media (max-width:1024px){
    .header__inner-about{
        padding-top: 10px;
    }
    .header__left-about{
        gap: 0;
    }
    .header__burger{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        cursor: pointer;
        position: absolute;
        left: 20px;
    }
    .header__burger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .advantages__grid{
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .advantages__header-block{
        padding-bottom: 20px;
    }

    .advantages__header-block-svg{
        display: none;
    }
    .filter-tag{
        padding-left: 200px;
    }

    .sort-box-grid{
        display: flex;
        justify-content: end;
    }
    .top-bar{
        justify-content:unset;
    }
    .photo-section{
        width: 328px;
    }
}

/* 1000px и меньше */
@media (max-width:1000px){

    .nav{
        display: none;
    }
    .header__call{
        display: flex;
        padding-left: 70px;
    }
    .header__link{
        display: none;
    }
    .header__link .btn{
        display: none;
    }
    .header__inner-about{
        justify-content: center;
        display: flex;
        align-items: center;
        background: white;
        padding: 15px 30px;
        border-radius: 40px;
    }
    .breadcrumbs{
        padding-top:50px;
    }
    .filter-tag{
        padding-left: 100px;
    }
    .sort-box{
        
        display: flex;
        justify-content: space-between;
    }

    .price-section{
        display: block;
    }
    .seo-text-h2{
        font-size: 28px;
    }
    .promo-h2{
        font-size: 42px;
        
    }
    .rating{
        top: 100px;
        right: 135px;
    }
    .promo_block{
        gap: 20px;
    }
}

/* Для 768 и меньше  */
@media (max-width:768px){
	.promo_block .where-start__button-block{
		align-self: center;
        order: 3;
        margin-top: 10px;
    }
	.promo_block-box-div-s{
		display:flex;
		justify-content:center;
	}
	
	.buttons{
		align-items:center;
	}
	.close-filters-btn{
		display:flex;
	}
	.sidebar  {
		display:block;
        position: fixed;
        top: 0;
        left: -100%; /* полностью за пределами экрана */
        width: 70%;
		height:100%;
        background: white;
        z-index: 999;
        padding: 20px;
        overflow-y: auto;
        transition: left 0.3s ease; /* плавное выдвижение */
    }

    /* Когда активен — выезжает */
    .sidebar.active {
        left: 0;
    }

    /* Кнопка "Фильтры" — показываем */
    .invisible-button {
        display: block;
    }
	 .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;  
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .overlay.active {
        opacity: 1;
        
    }

  .close-filters-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
  }

	.tag-e{
		width:15vw;
	}
    .advantages__header-block{
        width: 90vw;
        padding-top: 30px;
    }
    .advantages__cards-block{
        width: 90vw;
    }
    .advantages__cards-grid{
        display: block;
    }
    .advantages-card-flex{
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .advantages__card{
        display: flex;
        gap: 0;
        min-height: 0;
        margin-bottom:20px;
    }
    .advantages__card-text{
        display: none;
    }
    .search-box-block{
        padding-bottom: 20px;
    }
    .sort-box{
        
        padding: 10px;
        display: flex;
        justify-content: space-between;
    }
    .specialist-card{
        display: block;
        width: 95vw;
    }
    .photo-section{
        width: 95vw;
    }
    .rating{
        top: 15px;
        right: 15px;
    }
    .info-section{
        width: 95vw;
    }
    .filter-tag{
        padding-left: 0;
    }
    .seo-text-main{
        display: block;
    }
    .seo-text-h2{
        font-size: 28px;
    }
    .seo-text-p{
        width: 95vw;
    }
  
	.promo-text-box{
		display:contents;
	}
	
    .promo-h2{
        display: flex;
        font-size: 32px;
        padding-bottom: 20px;
    }
    .promo-text{
        padding-bottom: 20px;
    }

    .secret-button{
        padding: 20px;
        display: flex;
        justify-content: center;

	}
	.specialist-card{
		width:93vw;
	}
}


@media (max-width: 600px){
	.search-box{
		width:93vw;
	}
	.tag-e{
		width:14vw;
	}
}

/* Для 480 и меньше */
@media (max-width:480px){
	.filter-checkbox{
		font-size:18px;
	}
	.tag-e{
		width:18vw;
	}
	.sort-box-grid{
		justify-content:space-evenly;
	}
	.specialist-card{
		width:92vw;
	}
	
    .advantages__header-block{
        display: flex;
        padding-bottom: 0;
    }
    .advantages__title{
        font-size: clamp(42px,3vw,32px);
    }
    .invisible-svg{
        display: flex;
    }
    .photo-section{
        width: 90vw;
    }
    .info-section{
        width: 90vw;
    }
    .buttons{
        font-size: 16px;
    }
    .suit__card-btn-2{
        font-size: 16px;
        width: 155px;
        padding-left:15px;
    }
    .suit__card-btn-5{
        padding-right: 5px;
        font-size: 16px;
        width: 155px;
        padding-left:15px;
    }
    
    .price-flex{
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .seo-text-p{
        width: 90vw;

    }
    .p-invis{
        display: none;
    }
    .search-box{
        width: 90vw;
    }
    .sort-box{
       
    }
}

@media(max-width:430px){
    .invisible-svg{
        display: none;
    }
}
/* Для 375 и меньше */
@media(max-width:375px){

}
