@import url("https://fonts.googleapis.com/css2?family=Podkova:wght@700&display=swap");
@import url("https://fonts.cdnfonts.com/css/gilroy");
/* Reset and Base Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Local Gilroy fonts */

@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-Light.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-ExtraBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}

/* Пример использования */

body {
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  /* Light */
}

h1,
h2,
h3 {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  /* ExtraBold */
}

body {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  /* Light */
}

/* Container */

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

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

/* Logo Section */

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

.logo-image {
  /* exact size matches provided asset placeholder */
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: "Podkova", serif;
  font-weight: 700;
  /* Bold 700 */
  font-size: 20px;
  /* 24px */
  letter-spacing: 0;
  /* 0% */
  color: #424242;
}

.menu-item-has-children {
    position: relative;
  }
  
  .menu-item-has-children > a {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
    display: block;
  }
  
  .menu-item-has-children > a:after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 10px;
    transform: translateY(-50%);
    font-size: 10px;
    transition: transform 0.3s ease;
  }
  
  .menu-item-has-children.active > a:after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  /* Абсолютное позиционирование подменю */
  .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin: 0;
    margin-top: 10px;
    list-style: none;
  }
  
  .menu-item-has-children.active .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* Стили для элементов подменю */
  .sub-menu .menu-item {
    margin: 0;
    padding: 0;
  }
  
  .sub-menu .menu-item a {
    display: block;
    padding: 6px 15px;
    color: #333;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
  }
  
  .sub-menu .menu-item a:hover {
    background: #f5f5f5;
  }
  
  /* Убираем второй дублирующий sub-menu */
  #menu-item-89 + .sub-menu {
    display: none }

.logo-line {
  line-height: 1;
}

/* Contact Section */

.contacts {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}
.is-search-form {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 1122px) {
  .is-search-form  {
    display: none;
  }
}
.contact {
  /* email, phone */
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #424242;
  font-weight: 500;
  /* Medium 500 */
  font-size: 18px;
  /* 20px */
  line-height: 1;
  /* 100% */
  gap: 10px;
}

.contact .icon {
  width: 20px;
  height: 20px;
}

/* exact 15px between icon and text */

/* exact 37px between email and phone */

.gap-contacts {
  width: 37px;
  height: 1px;
  flex: 0 0 auto;
}

.contact-text {
  font-size: 16px;
  color: #424242;
  font-weight: 400;
  white-space: nowrap;
}

/* CTA Button */

.cta-button {
  background-color: #777373;
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

/* Hamburger Menu */

.menu-line {
  display: block;
  height: 2px;
  background-color: #424242;
  transition: all 0.3s ease;
}

.menu-line-top {
  width: 20px;
}

.menu-line-middle {
  width: 16px;
}

.menu-line-bottom {
  width: 20px;
}

.menu-toggle:hover .menu-line {
  background-color: #616161;
}

/* Right actions spacing: 68px from phone to button, 100px between button and toggle */

.actions {
  display: flex;
  align-items: center;
  gap: 50px;
  /* button -> toggle */
}

/* Navigation */

/* ======== НАВИГАЦИОННОЕ МЕНЮ ======== */

.navigation {
  background-color: #00a4e4;
  /* голубой фон как на скрине */
  padding: 16px 0;
}

.nav-list {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  text-align: center;
}

.nav-link {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 0.8;
}

.header__right {
  display: flex;
  gap: 40px;
}

/* Responsive adjustments for smaller screens */

.law-services {
  padding: 80px 0;
  background-color: #fff;
  font-family: "Gilroy", sans-serif;
}
.law-services {
  margin-top: 140px;
}

.page-hero {
  margin-top: 135px;
}

.law-services__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.law-services__text {
  flex: 1;
  max-width: 55%;
}

.law-services__text p {
  font-size: 16px;
  margin-bottom: 15px;
}

.law-services__text p:last-child {
  margin-bottom: 0;
}
.law-services__text ul {
  margin: 30px 0;
}

.law-services__text ul li {
  list-style-position: inside;
  font-size: 16px;
  margin-bottom: 10px;
}

.law-services__title {
  font-family: "Podkova", serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: none;
  color: #4a4a4a;
  margin-bottom: 37px;
}

.law-services__title span {
  color: #009fe3;
}
.law-services__title2 {
  font-family: "Podkova", serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: none;
  color: #4a4a4a;
  margin-bottom: 37px;
}

.law-services__title2 span {
  color: #009fe3;
}

.law-services__subtitle {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: none;
  color: #0b0b0b;
}

.law-services__image {
  height: auto;
  display: block;
}

.law-services__form {
  background: #f4f4f4;
  border-radius: 16px;
  padding: 45px 70px;
  text-align: center;
  width: 40%;
}

.form__title {
  margin-bottom: 20px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: #4a4a4a;
}

.form__group {
  margin-bottom: 16px;
}

.form__group input {
  width: 100%;
  padding: 20px;
  font-size: 16px;
  border: 0;
  border-radius: 16px;
  outline: none;
  padding-left: 50px;
}

.form__group {
  position: relative;
}
.form__group img {
  position: absolute;
  top: 20px;
  left: 15px;
}

.btnefect {
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.form__button {
  width: 100%;
  background-color: #009fe3;
  color: #fff;
  border: 0;
  border-radius: 16px;
  padding: 20px;
  outline: 0;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.btnefetcv1:hover {
  background-color: #777373;
}

.btnefetcv2:hover {
  background-color: #009fe3;
}

.form__note {
  margin-top: 17px;
  color: #000000;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0;
  text-align: center;
}

.form__note a {
  color: #009fe3;
  text-decoration: none;
}

.form__note a:hover {
  text-decoration: underline;
}

.stats {
  background-color: #777373;
  padding: 60px 0;
  color: #ffffff;
  font-family: "Gilroy", sans-serif;
}

.stats__content {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.stats__content img {
  max-width: 600px;
  width: 100%;
}

.stats__item {
  display: flex;
  align-items: center;
  gap: 35px;
  flex: 1;
  min-width: 240px;
  justify-content: flex-start;
}

.stats__icon {
  width: 55px;
  height: auto;
  flex-shrink: 0;
}

.stats__text {
  text-align: left;
}

.stats__number {
  color: #ffffff;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 55px;
  line-height: 100%;
  letter-spacing: 0;
}

.stats__desc {
  color: #ffffff;
  text-transform: none;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
}

.stats__item svg {
  width: 50px;
}

.stats__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
}

.stats__info h1,
.stats__info h2 {
  font-family: "Podkova", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  margin-bottom: 37px;
}

.stats__info p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  font-family: "Gilroy", sans-serif;
}

.stats__info p span {
  font-weight: 600;
}

.stats__body {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
}

@media (max-width: 1016px) {
  .stats__body {
    flex-direction: column;
  }
}

.services {
  padding: 100px 0;
  background: #f8f8f8;
}

.services__title {
  font-family: "Podkova", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #333;
  text-align: left;
  margin-bottom: 60px;
}

.services__items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.services__item a {
  color: #000;
  text-decoration: none;
}

.service-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  transition: box-shadow 0.6s ease;
}

.service-card:hover {
  box-shadow: 0 6px 30px rgba(0, 159, 227, 0.15);
}

.service-card__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #009fe3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}

.service-card__icon svg {
  width: 40px;
}

.service-card__content {
  flex: 1;
}

.service-card__title a {
  margin-top: 24px;
  color: #4a4a4a;
  margin-bottom: 15px;
  font-family: Gilroy;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0;
  text-decoration: none;
  display: block;
}

.service-card__list {
  list-style: disc;
  padding: 0;
  margin: 0;
  list-style-position: inside;
}

.service-card__list li {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 35px;
  color: #000000;
  position: relative;
}

.service-card__icon2 svg {
  width: 77px;
}

.calculator {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.calculator-type {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.calculator-card {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
}

.calculator-card label {
  margin-bottom: 10px;
  font-weight: bold;
}

.calculator-card input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  text-align: center;
}

.calculator-result {
  margin-top: 30px;
}

.result-card {
  display: inline-block;
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 18px;
}

.court-calculator {
  padding: 80px 0;
  text-align: center;
  font-family: "Gilroy", sans-serif;
  background-image: url("../images/oopl.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.court-calculator__title {
  font-family: "Podkova", serif;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  margin-bottom: 50px;
}

.court-calculator__cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.court-calculator__card {
  width: 40%;
}

.court-calculator__icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
}

.court-calculator__input-group {
  position: relative;
  width: 100%;
  height: 70px;
}

.court-calculator__input {
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 18px;
  padding: 20px;
  background: #fff;
  outline: none;
  transition: border-color 0.3s ease;
}

.court-calculator__input:focus {
}

.court-calculator__input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.court-calculator__input {
  width: 100%;
  padding: 20px 65px 10px 10px;
  font-size: 16px;
  font-family: "Gilroy", sans-serif;
  padding-left: 61px;
}

/* Исходное положение label */
.court-calculator__label {
  position: absolute;
  top: 29px;
  left: 65px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #000;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Когда input в фокусе или не пустой */
.court-calculator__input:focus + .court-calculator__label,
.court-calculator__input:not(:placeholder-shown) + .court-calculator__label {
  top: 10px;
  font-size: 13px;
  color: #000;
}

.court-calculator__input-group svg {
  position: absolute;
  left: 20px;
  top: 14px;
  width: 30px;
}
.court-calculator__input-group2 svg {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 30px;
}

.court-calculator__note span {
  display: block;
}

.court-calculator__note {
  margin-top: 30px;
  font-size: 18px;
  color: #fff;
  font-family: "Gilroy", sans-serif;
  line-height: 30px;
}

.callback-section {
  /* background: #f6f6f6; */
  border-radius: 16px;
  /* padding: 60px 80px; */
  margin: 80px auto;
  font-family: "Gilroy", sans-serif;
}
.callback-section__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  background: #f6f6f6;
  padding: 50px 60px;
  border-radius: 30px;
}
.allback-secti .form__group {
  margin-bottom: 0;
  width: 65%;
}

.allback-secti .callback-section__button {
  margin-top: 0;
}

.allback-secti {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.callback-section__text {
  flex: 1;
  min-width: 250px;
}

.callback-section__title {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: #4a4a4a;
}
.callback-section__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1.2;
  min-width: 300px;
}

.callback-section__input-wrapper {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.callback-section__input {
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  font-family: "Gilroy", sans-serif;
  width: 100%;
}

.callback-section__button {
  background: #00a4e4;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 30px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.callback-section__button:hover {
  background-color: #0090c8;
}

.callback-section__note {
  font-size: 13px;
  color: #000;
  margin-top: 15px;
  text-align: center;
  width: 100%;
}

.callback-section__note a {
  color: #009fe3;
  text-decoration: underline;
}

.callback-section__note a:hover {
  text-decoration: underline;
}

.benefits {
  background: #fafafa;
  padding: 100px 0;
  font-family: "Gilroy", sans-serif;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 100px;
  justify-items: start;
  align-items: start;
}

.benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 350px;
}

.benefits__icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefits__icon svg {
  width: 30px;
}

.benefits__icon--gray {
  background: #424242;
}

.benefits__icon--blue {
  background: #00a4e4;
}

.benefits__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.benefits__text {
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.seo-example {
  background: #fff;
  padding: 80px 0;
  font-family: "Gilroy", sans-serif;
  color: #333;
}

.seo-example__title {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  line-height: 1;
  letter-spacing: 0;
}

.seo-example__intro {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 39px;
  color: #000;
  border-left: 10px solid #009fe3;
  padding-left: 25px;
  min-height: 103px;
  padding-top: 14px;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0;
}

.seo-example__intro strong {
  color: #000;
}

.seo-example__subtitle {
  font-weight: 700;
  font-size: 24px;
  margin: 50px 0 20px;
  color: #000;
  font-family: "Podkova", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  line-height: 48px;
  letter-spacing: 0;
}
.seo-example__list {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 30px;
}
.seo-example__list li {
  margin-bottom: 10px;
  line-height: 1.5;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo-example__benefits-text li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo-example__list li:before,
.seo-example__benefits-text li:before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background: #009fe3;
  border-radius: 100%;
}
.seo-example__text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
}

.seo-example__benefits {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.seo-example__benefits-text h4 {
  position: relative;
}
.seo-example__benefits-text h4:before {
  content: "";
  background-image: url(/wp-content/uploads/2025/11/vector-2.png);
  width: 45px;
  height: 60px;
  background-position: center;
  background-size: cover;
}
.seo-example__benefits-text {
  flex: 1;
  min-width: 300px;
}

.seo-example__benefits-text h4 svg {
  width: 50px;
}
.seo-example__benefits-text h4 {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 35px;
  line-height: 39px;
  letter-spacing: 0;
}
.seo-example__benefits-text ul {
  list-style: disc;
  padding-left: 20px;
}

.seo-example__benefits-text li {
  margin-bottom: 10px;
  color: #444;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
}
.seo-example__image {
  flex: 1;
  max-width: 500px;
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
}
.wpcf7-spinner {
  display: none !important;
}
.table-content .seo-example__image {
  max-width: 390px;
}

.callback-section .wpcf7 {
  width: 60%;
}

.table-content .seo-example__benefits-text li {
  font-size: 17px;
}
.seo-example__final {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

.faq {
  background: url("../images/yyyy.png") center/cover no-repeat;
  padding: 100px 0;
  font-family: "Gilroy", sans-serif;
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
  min-height: 900px;
}

.seo-example__benefits-text ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 30px;
}
.service-card__list {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 30px;
}

.service-card__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__social.mail {
  padding: 10px 20px;
}
.service-card__list li:before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background: #009fe3;
  border-radius: 100%;
}
.services__item a {
  line-height: 20px;
}
.service-card__list li {
  margin-bottom: 10px;
}

.faq {
}

.faq__title {
  font-family: "Podkova", serif;
  font-weight: 700;
  font-size: 42px;
  text-align: left;
  color: #fff;
  margin-bottom: 60px;
}

.faq__title span {
  color: #009fe3;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
  grid-auto-rows: min-content;
  align-items: start;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.6s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 25px rgba(0, 159, 227, 0.15);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  padding: 30px 50px 30px 25px;
  cursor: pointer;
  position: relative;
  font-family: "Gilroy", sans-serif;
}

.faq-item__question::after {
  content: "▼";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #009fe3;
  transition: transform 0.6s ease;
}

.faq-item.active .faq-item__question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px; /* или больше, зависит от контента */
  padding: 15px 25px 25px; /* добавляем внутренние отступы при открытии */
}

.cases {
  padding: 100px 0;
  background: #f7f7f7;
  font-family: "Gilroy", sans-serif;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0;
  gap: 10px;
  border-bottom: 5px solid #009fe3;
}

.tab {
  background: #4a4a4a;
  color: #fff;
  border: none;
  padding: 12px 10px;
  border-radius: 10px 10px 0px 0px;
  cursor: pointer;
  font-size: 16px;
  transition: ease 0.6s;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  transition: background-color 0.6s ease;
}

.swiper-pagination .swiper-pagination-bullet {
  background: #4a4a4a;
  opacity: 1;
  width: 15px;
  height: 15px;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #009fe3 !important;
  opacity: 1;
  width: 15px;
  height: 15px;
}

.tab:hover {
  background-color: #009fe3;
}

.slide__images {
  display: flex;
  gap: 20px;
  width: 50%;
}

.slide__images div {
  width: 45%;
}

.tab.active {
  background: #009fe3;
}

.cases-swiper {
  background: #fff;
  border-radius: 0px 0px 16px 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

.slide {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px;
}

.slide__images img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.slide__text {
  color: #333;
  width: 50%;
}

.slide__text h3 {
  font-family: "Podkova", serif;
  font-size: 20px;
  margin: 15px 0 5px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #009fe3;
  transition: ease 0.6s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #777373;
}

.swiper-pagination-bullet-active {
  background: #009fe3;
}

.footer {
  background: #3f3f3f;
  color: #fff;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  padding: 40px 0 20px;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  gap: 35px;
  align-items: center;
}

.footer__logo a {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Podkova", serif;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__mail svg {
  width: 20px;
}

.footer__contacts {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__contacts a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contacts a:hover {
  opacity: 1;
}

.footer__center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__center li {
  margin-bottom: 8px;
}

.footer__center a {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  transition: 0.2s;
}

.footer__center a:hover {
  opacity: 1;
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__btn {
  background: #6b6b6b;
  border: none;
  color: #fff;
  padding: 15px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 1px;
  text-align: center;
}

.footer__social {
  display: block;
  border: none;
  color: #fff;
  padding: 15px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer__social.whatsapp {
  background: #25d366;
}

.footer__social.telegram {
  background: #1da1f2;
}

.footer__social.mail {
  background: linear-gradient(270deg, #9936b6 0%, #7a76ff 100%);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 35px;
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #d0d0d0;
}

/* Изолированные стили, чтобы не конфликтовали с вашим CSS */

.footer__social {
  transition: background-color 0.6s ease; /* вот что анимируется */
}
.footer__social:hover {
  background-color: #6b6b6b;
}
.moso {
  text-align: center;
  padding: 20px;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}

.moso a {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-style: normal; /* Bold-ը կարգավորվում է weight-ով */
  font-size: 18px;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  color: #000;
}

.footer-links {
  text-align: center;
  padding: 20px;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: "Gilroy", sans-serif;
  font-weight: 500; /* Medium-ը փոխանցվում է weight-ով */
  font-style: normal; /* CSS-ում Medium ոչ առանձին style չէ */
  font-size: 14px;
  letter-spacing: 0; /* CSS-ում տոկոսը պետք չէ */
  text-align: center;
  color: #000;
  text-decoration: none;
}

.main-menu__body .main-menu__nav {
  grid-template-columns: auto auto;
}

.main-menu__body {
  background: #fafafa;
}

.menufooter {
  background: #4a4a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0;
  color: #fff;
  gap: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 30px;
}

.menu-toggle svg {
  width: 40px;
  color: #777; /* исходный цвет */
  transition: color 0.6s ease; /* вот что анимируется */
  cursor: pointer;
}

.menu-toggle:hover svg {
  color: #009fe3;
}

.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
  transform: translateX(-100%);
  transition: all 0.5s ease 0s;
  display: grid;
  grid-template-columns: 24% 1fr;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
  scrollbar-width: thin;
}

.main-menu.show {
  transform: translateX(0);
}
.main-menu__aside {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 28px 22px;
  position: relative;
  z-index: 2;
}
.main-menu__nav {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 60px;
  gap: 60px;
}
.main-menu__close {
  cursor: pointer;
  position: absolute;
  width: 28px;
  height: 28px;
  right: 11px;
  top: 6px;
  z-index: 99;
}

body.open-menu {
  overflow: hidden;
}

.law-services__image {
  width: 75%;
}
.law-services {
  position: relative;
  min-height: 650px;
}
.sadq {
  position: absolute;
  bottom: 0;
}

.podvalf .navigation {
  background-color: #3a3a3a;
}

.quiz-title {
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 39px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.quiz-block {
  background: #3a3a3a;
  padding: 40px 30px;
  border-radius: 12px;
  color: #fff;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.quiz-step {
  position: absolute;
  top: 30px;
  right: 20px;
  background: #009fe3;
  padding: 11px 27px;
  border-radius: 39px;
  font-weight: 500;
  border-radius: 39px;
  font-weight: 500;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 27px;
  line-height: 100%;
  letter-spacing: 0;
}

.quiz-question-text {
  margin-bottom: 35px;
  font-size: 16px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
}

.quiz-option {
  display: flex;
  align-items: center;
  padding: 5px 0;
  border-radius: 8px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  transition: background 0.3s;
}

.quiz-option:hover {
  background: #555;
}

/* скрываем стандартное радио */
.quiz-option input {
  display: none;
}

.quizsection {
  background-color: #777373;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* кружок */
.custom-radio {
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
  background: #fff;
}

/* точка внутри при выборе */
.quiz-option input:checked + .custom-radio::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #009fe3;
  border-radius: 50%;
}

/* кнопки */
.quiz-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  max-width: 700px;
  margin: 0px auto;
  margin-top: 50px;
}

.btn-back {
  background: #888;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-next {
  background: #009fe3;
  color: #fff;
  border: none;
  padding: 18px 30px;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
}
.aso {
  background: #777373;
  padding-top: 100px;
  padding-bottom: 100px;
}

.table-page {
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
  padding-top: 100px;
}

.table-page .table-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* Левое меню */
.table-page .table-sidebar {
  width: 300px;
  border-right: 6px solid #00a1e4;
}

.table-page .table-accordion details {
  margin-bottom: 16px;
  border-radius: 20px 20px 0px 0px;
}

.table-page .table-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #4a4a4a;
  font-weight: 500;
  border-radius: 20px 0 0px 20px;
  box-shadow: none;
  background: #f4f4f4;
  font-size: 18px;
}

.table-page .table-accordion summary::-webkit-details-marker {
  display: none;
}

.table-page .table-accordion summary::after {
  content: "▾";
  font-size: 30px;
  transform-origin: center;
  transition: transform 0.18s ease;
  color: #009fe3;
}

.table-page .table-accordion details[open] > summary::after {
  transform: rotate(180deg);
  color: #fff;
}

.table-page .table-accordion details[open] > summary {
  background: #777373;
  color: #fff;
  font-weight: 500;
  border-radius: 10px 0px 0px 0px;
}

.table-page .table-accordion ul {
  font-size: 14px;
  color: #2f3b3c;
  background: #f4f4f4;
  list-style-position: inside;
}
.table-page .table-accordion li {
  margin-bottom: 0;
  padding: 10px;
  border-bottom: 1px solid #fff;
}

/* Активный элемент */
.table-page .table-accordion summary.active {
  background: #555;
  color: #fff;
}

/* Контент */
.table-page .table-content {
  padding: 20px 40px;
  flex: 1;
  background: #f4f4f4;
}

.table-page .table-content h1 {
}

.table-page .table-intro {
  border-left: 4px solid #00a1e4;
  padding-left: 14px;
  margin-bottom: 18px;
  color: #333;
}

.table-page .table-content h2 {
}

.table-page .table-content h3 {
}

.table-page .table-features {
  margin: 8px 0 18px 18px;
}

.table-page .table-features li {
}

/* Две колонки */
.table-page .table-two-column {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 10px;
}

.table-page .table-photo {
  margin: 0;
  width: 220px;
  min-width: 220px;
  border-radius: 6px;
  overflow: hidden;
  background: #f0f0f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.table-page .table-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.table-page .table-accordion summary {
  transition: background-color 0.6s ease;
}

.table-page .table-accordion summary:hover {
  background-color: #00a1e4;
  color: #fff;
}

.table-page .table-accordion summary:hover::after {
  color: #fff;
}
.table-page .table-accordion li a {
  color: #000;
  text-decoration: none;
}

.table-page .table-sidebar {
  width: 280px;
  border-right: 6px solid #00a1e4;
}

.main-menu__city {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 15px;
}

.main-menu__city a {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 15px;
  color: #000000;
}

.header__main-menu .logo-section {
  justify-content: center;
}

.header__main-menu .footer__contacts a {
  color: #000;
}

.header__main-menu .footer__contacts {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.main-menu__close svg path {
  stroke: #000; /* Սկզբնական գույն */
  transition: stroke 0.6s ease; /* Animate stroke-ի գույնը */
}

.main-menu__close:hover svg path {
  stroke: #009fe3; /* Hover գույն */
}

.main-menu__body {
  background-color: #fafafa !important;
}

.bankruptcy {
  padding: 80px 0;
}

.bankruptcy__header {
  margin-bottom: 50px;
}

.bankruptcy__title {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Podkova", serif;
  color: #4a4a4a;
}

.bankruptcy__desc {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  font-weight: 500;
}

.bankruptcy__subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 60px;
}

.ccox {
  position: fixed;
  width: 100%;
  z-index: 9;
  top: 0;
  left: 0;
}

.bankruptcy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 25px;
}

.bankruptcy__item {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 0 0 1px #eee;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bankruptcy__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.bankruptcy__icon {
  margin-bottom: 20px;
}

.bankruptcy__icon img {
  object-fit: contain;
}

.bankruptcy__icon svg {
  width: 50px;
}

.bankruptcy__item-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #4a4a4a;
  letter-spacing: 1px;

  text-align: center;
}
.bankruptcy__item p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  text-align: center;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

.logo-section a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #000;
  text-decoration: none;
}

.contacts-section {
  background: #fff;
  padding: 40px 0;
}

.contacts-section .container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.contacts-info {
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 25px;
}

.contact-item i {
  color: #0099ff;
  font-size: 20px;
  min-width: 20px;
  margin-top: 2px;
}

.contact-text strong {
  display: block;
  font-size: 16px;
  color: #000;
  margin-bottom: 3px;
}

.contact-text span {
  color: #333;
  font-size: 15px;
}

.contacts-map {
  flex: 1;
}

.contacts-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
}

.blog-section {
  padding: 60px 0;
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.blog-image img {
  width: 380px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-content {
  flex: 1;
}

.blog-title {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
  color: #000;
}

.blog-title a {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.blog-excerpt {
  color: #444;
  font-family: "Gilroy", sans-serif;
  line-height: 1.5;
  margin-bottom: 20px;
}

.blog-btn {
  display: inline-block;
  background: #009fe3;
  color: #fff;
  padding: 12px 35px;
  border-radius: 16px;
  text-decoration: none;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  transition: background 0.3s;
}
.blog-btn:hover {
  background: #007acc;
}

/* Пагинация */
.blog-pagination {
  text-align: center;
  margin-top: 40px;
}

.blog-pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.blog-pagination .page-numbers {
  background: #4a4a4a;
  color: #fff;
  padding: 8px 15px;
  border-radius: 10px;
}
.blog-pagination .page-numbers.current {
  background: #009fe3;
  color: #fff;
  border-color: #009fe3;
  padding: 8px 15px;
  border-radius: 10px;
}
.next.page-numbers {
  background: transparent;
  background-image: url(/wp-content/uploads/2025/11/vector-3.png);
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  background-size: contain;
}
.prev.page-numbers {
  background: transparent;
  background-image: url(/wp-content/uploads/2025/11/vector-3.png) !important;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  transform: rotate(-180deg);
  background-size: contain;
}

.single-thumbnail img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
}

.single-content {
  color: #333;
  line-height: 1.6;
  font-family: "Gilroy", sans-serif;
}

.single-back {
  margin-top: 40px;
}

.blog-item:nth-child(even) {
  flex-direction: row-reverse;
}

.table-content .seo-example {
  background: transparent;
}
.mail svg {
  width: 20px;
}

.allback-secti .callback-section__button,
.btn-next,
.blog-btn {
  transition: background-color 0.5s ease;
}
.allback-secti .callback-section__button:hover,
.btn-next:hover,
.blog-btn:hover {
  background-color: #6b6b6b;
}
.moso a,
.footer-links a {
  transition: color 0.5s ease;
}
.moso a:hover,
.footer-links a:hover {
  color: #009fe3;
}

.btn-back {
  transition: background-color 0.5s ease;
}

.btn-back:hover {
  background-color: #009fe3;
}

.page-hero {
  position: relative;
  background: url(/wp-content/uploads/2025/11/rectangle-36.png) center / cover no-repeat;
  color: #fff;
  padding: 60px 0 80px;
}

nav .nav-list a {
  transition: color 0.8s ease;
}
nav .nav-list a:hover {
  color: #000;
}

.footer__social.mail {
  transition: background 0.5s ease;
}

.footer__social.mail:hover {
  background: linear-gradient(270deg, #5c5c5c 0%, #7a7a7a 100%);
}
.footer__btn {
  transition: background-color 0.6s ease;
}

.footer__center a,
.service-card__title a {
  transition: color 0.6s ease;
}

.footer__center a:hover,
.service-card__title a:hover {
  color: #009fe3;
}

.podvalf .nav-list a {
  transition: color 0.6s ease;
}
.podvalf .nav-list a:hover {
  color: #009fe3;
}

.footer__btn:hover {
  background-color: #009fe3;
}

.services__item a {
  transition: color 0.6s ease;
}

.services__item a:hover {
  color: #009fe3;
}

.btn-next {
  opacity: 1;
  cursor: pointer;
  align-items: center;
  gap: 15px;
}

.btn-next svg {
  width: 9px;
}

.btn-back {
  opacity: 1;
  cursor: pointer;
  align-items: center;
  gap: 15px;
  display: flex !important;
}

.carousel__button.is-close {
  display: none !important;
}
.btn-back svg {
  width: 9px;
}

.quiz-block .callback-section__note {
  color: #fff;
}
.btn-back {
  font-weight: 700;
  letter-spacing: 1px;
}
#my-modal {
  width: 480px !important;
  background-image: url(/wp-content/uploads/2025/11/group-118.png);
  border-radius: 20px;
}

.modal-fb {
  position: relative;
  max-width: 600px;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
}

#my-modal h2 {
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}
#my-modal p {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}
#my-modal .form__note {
  font-size: 12px;
}
.modal-fb__close {
  color: #fff;
}

.modal-fb__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .main-menu__aside-body {
    position: sticky;
    top: 28px;
  }
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .contacts-section .container {
    flex-direction: column;
  }
  .contacts-map iframe {
    height: 300px;
  }
}

/* Адаптив */
@media (max-width: 980px) {
  .table-page .table-card {
    flex-direction: column;
    width: 95%;
  }

  .table-page .table-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 6px solid #00a1e4;
  }

  .table-page .table-content {
    padding: 20px;
  }

  .table-page .table-two-column {
    flex-direction: column;
  }

  .table-page .table-photo {
    width: 100%;
    min-width: auto;
  }
}

@media (min-width: 768px) {
  .main-menu.show .main-menu__body {
    transform: translateX(0);
  }
}
@media (min-width: 768px) {
  .main-menu__body {
    transform: translateX(-100%);
  }
}
.main-menu__body {
  background: #fff;
  flex: 1;
  padding: 48px 19px;
  position: relative;
  transition: all 0.5s ease 0.5s;
  z-index: 1;
}

@media (max-width: 992px) {
  .slide {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .faq__grid {
    grid-template-columns: 1fr;
  }
  .faq__title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .seo-example__benefits {
    flex-direction: column;
  }
  .seo-example__image {
    max-width: 100%;
  }
}

/* === Адаптив === */

@media (max-width: 992px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
  }
}

@media (max-width: 600px) {
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .benefits__item {
    max-width: 100%;
  }
}

/* === Адаптив === */

@media (max-width: 768px) {
  .callback-section {
    padding: 40px 20px;
    text-align: center;
  }
  .callback-section__container {
    flex-direction: column;
    align-items: center;
  }
  .callback-section__form {
    align-items: center;
  }
  .callback-section__input-wrapper {
    max-width: 100%;
  }
  .callback-section__button {
    width: 100%;
    max-width: 360px;
  }
}

/* Адаптив */

@media (max-width: 992px) {
  .stats__content {
    flex-direction: column;
    gap: 30px;
  }
  .stats__item {
    justify-content: flex-start;
  }
}

/* Адаптив */

@media (max-width: 992px) {
  .law-services__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .law-services__text {
    max-width: 100%;
  }
  .law-services__form {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 1024px) {
  .contact-section {
    gap: 24px;
  }
  .contact-text {
    font-size: 14px;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header-content {
    gap: 20px;
  }
  .contact-section {
    display: none;
  }
  .logo-text {
    font-size: 16px;
  }
  .logo-line1,
  .logo-line2 {
    font-size: 16px;
  }
  .nav-list {
    gap: 16px;
  }
  .nav-link {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1200px) {
  .container {
    width: 1000px;
  }
  .nav-list {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    flex-wrap: wrap;
    text-align: center;
  }
  .nav-link {
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
  }
  .law-services__title {
    font-family: "Podkova", serif;
    font-weight: 700;
    font-size: 41px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: none;
    color: #4a4a4a;
    margin-bottom: 25px;
  }
  .form__title {
    margin-bottom: 20px;
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
  }

  .service-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
  }
  .service-card__list li {
    line-height: 20px;
  }
  .tab {
    padding: 12px 5px;
  }
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: "Podkova", serif;
    font-weight: 700;
    font-size: 15px;
  }
  .main-menu__city {
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
  }

  .footer__btn {
    background: #6b6b6b;
    border: none;
    color: #fff;
    padding: 14px 5px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
  }
}

@media only screen and (max-width: 1000px) {
  .container {
    width: 800px;
  }
  .contact.email {
    display: none;
  }

  .navigation {
    display: none;
  }
  .main-menu {
    grid-template-columns: 100%;
  }
  .menufooter {
    display: none;
  }
  .main-menu__body .main-menu__nav {
    grid-template-columns: auto;
  }
  .sadq {
    position: static;
    bottom: 0;
    display: none;
  }
  .law-services__form {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 800px) {
  .container {
    width: 100%;
    padding: 10px;
  }
  .law-services__title {
    font-family: "Podkova", serif;
    font-weight: 700;
    font-size: 41px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: none;
    color: #4a4a4a;
    margin-bottom: 25px;
    text-align: center;
  }

  .law-services__subtitle {
    text-align: center;
  }
  .header-content .cta-button {
    display: none;
  }
  .court-calculator__card {
    width: 100%;
  }
  .allback-secti {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .allback-secti .form__group {
    margin-bottom: 0;
    width: 100%;
  }
  .allback-secti .callback-section__button {
    margin-top: 0;
    display: block;
    max-width: 100%;
    padding: 20px;
    margin-top: 10px;
  }
  .tab {
    width: 44%;
  }

  .slide__images {
    display: flex;
    gap: 20px;
    width: 100%;
  }

  .slide__text {
    color: #333;
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .container {
    width: 100%;
    padding: 10px;
  }
  .seo-example__benefits-text {
    flex: 1;
    min-width: 100%;
  }
  .footer__container {
    max-width: 100%;
  }

  .logo-text {
    display: none;
  }
  .logo-section {
    display: block;
    width: 20%;
  }
  .logo-section img {
    width: 100%;
  }

  .contact {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #424242;
    font-weight: 500;
    font-size: 15px;
  }

  .law-services__title {
    font-family: "Podkova", serif;
    font-weight: 700;
    font-size: 28px;
  }

  .law-services__subtitle {
    text-align: center;
    font-size: 16px;
  }
  .law-services__form {
    background: #f4f4f4;
    border-radius: 16px;
    padding: 45px 15px;
    text-align: center;
    width: 40%;
  }
  .services__title {
    font-family: "Podkova", serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #333;
    text-align: left;
    margin-bottom: 40px;
  }
  .service-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    flex-direction: column;
  }

  .court-calculator__title {
    font-family: "Podkova", serif;
    font-weight: 700;
    font-size: 25px;
    color: #fff;
    margin-bottom: 50px;
  }
  .callback-section__form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1.2;
    min-width: 100%;
  }
  .callback-section__title {
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #4a4a4a;
  }

  .tab {
    width: 48%;
  }

  .tab {
    padding: 12px 5px;
    font-size: 13px;
  }

  .footer__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: column;
  }
  .footer__contacts {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .footer__social {
    font-size: 15px;
  }

  .law-services__form {
    width: 100%;
  }
  .main-menu__body {
  }
  .logo-section {
    display: block;
    width: 20%;
    margin: 0px auto;
  }

  .quiz-step {
    position: static;
    margin-bottom: 22px;
    text-align: center;
  }
  .blog-item {
    display: block;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
  }

  .blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
  }

  .law-services__title2 {
    font-family: "Podkova", serif;
    font-weight: 700;
    font-size: 40px;
  }
  .law-services {
    margin-top: 60px;
  }
}
.seo-example__benefits-text h4 {
  font-size: 26px;
  line-height: 29px;
}

.slider {
  position: relative;
}

.slider-container {
  width: 93%;
  margin: 0 auto;
}

.swiper-button-prev {
  left: 0px !important;
}

.swiper-button-next {
  right: 0px !important;
}

.partners {
  padding: 26px;
  background-color: #f7f7f7;
}

.partners__body .swiper-partners {
  margin-top: 39px;
}

.partners__body h3,
.partners__body h2 {
  text-align: center;
}

.swiper-partners .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swiper-partners .swiper-wrapper .swiper-slide img {
  max-width: 179px;
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.partners__body h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  line-height: 1;
  letter-spacing: 0;
}

.partners__body h3 {
  margin-bottom: 40px;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
}

.teams {
  padding: 45px 0;
  background-color: #f3f4f6;
}

.teams__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teams__bodyy h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.teams__bodyy h3 {
  margin-bottom: 40px;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  text-align: center;
  font-style: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
}

.teams__cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.teams__card {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
.teams__card-name {
  font-family: "Gilroy", sans-serif;
  padding: 0 20px;
  margin-top: 20px;
  font-weight: 700;
  max-width: 176px;
}
.teams__card-prof {
  font-family: "Gilroy", sans-serif;
  padding: 0 20px;
  margin-top: 16px;
}

.teams__card span {
  font-family: "Gilroy", sans-serif;
  padding: 0 20px;
  margin-top: 13px;
  display: block;
}

.teams__card img {
  max-width: 249px;
  height: 249px;
  width: 100%;
  object-fit: cover;
}

.teams__card a {
  font-family: "Gilroy", sans-serif;
  display: block;
  color: #fff;
  text-align: center;
  margin: 20px;
  background: #009fe3;
  color: #fff;
  padding: 12px 35px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 500;
  transition: ease 0.6s;
}

.teams__card a:hover {
  background-color: #777373;
}

@media only screen and (max-width: 1200px) {
  .teams__cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 793px) {
  .teams__card img {
    max-width: 350px;
  }
}

@media only screen and (max-width: 529px) {
  .teams__card img {
    max-width: 379px;
    object-position: top;
  }
}

@media only screen and (max-width: 500px) {
  .teams__cards {
    grid-template-columns: 1fr;
  }
}

.gratitude {
  padding: 40px 20px;
}

.gratitude h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.gratitude__tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
}

.gratitude-tabs__header {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  gap: 12px;
}

.gratitude-tabs__header .tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  background: none;
  border: none;
  border: 1px solid #c5d1ff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  transition: 0.6s ease;
  position: relative;
  border-radius: 16px;
  font-family: "Gilroy", sans-serif;
}
.gratitude-tabs__header .tab-btn:hover {
  background-color: #777373;
  color: #fff;
  border: solid 1px #777373;
}

.gratitude-tabs__header .tab-btn.active2 {
  color: #fff;
  background: #009fe3;
  border: 1px solid #009fe3;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.05);
}

.gratitude-tabs__content {
  padding: 30px;
}

.gratitude-tabs__content .tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.gratitude-tabs__content .tab-pane.active2 {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .gratitude-tabs__header {
    flex-direction: column;
    padding: 0;
  }

  .gratitude-tabs__header .tab-btn {
    padding: 15px 20px;
    justify-content: center;
    border-bottom: 1px solid #e9ecef;
    border-right: none;
  }

  .gratitude-tabs__header .tab-btn.active2 {
    border-bottom-color: #3498db;
  }

  .gratitude-tabs__content {
    padding: 20px;
  }

  .gratitude-tab-content h3 {
    font-size: 20px;
  }
}

.gratitude__card img {
  width: 95%;
}
.gratitude__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gratitude__card p {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.gratitude__card span {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.gratitude__card-image {
  border-radius: 10px;
  overflow: hidden;
  height: 370px;
}

.gratitude__card-image img {
  max-width: 260px;
  width: 100%;
  height: 370px;
  object-fit: cover;
}

@media (max-width: 532px) {
  .gratitude__card img {
    width: 100%;
  }
}

.expertise__areas-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expertise__areas-body h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.expertise__areas-body h3 {
  margin-bottom: 40px;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  text-align: center;
  font-style: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
}

.expertise__areas {
  padding: 60px 0;
}

.expertise__areas-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 822px;
  flex-wrap: wrap;
}
.expertise__areas-card {
  background: #009fe3;
  color: #fff;
  font-family: "Gilroy", sans-serif;
  padding: 18px 37px;
  border-radius: 30px;
}

.expertise__areas-card span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.swiper-slide {
  /* Разрешаем выделение текста */
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

.swiper-button-next,
.swiper-button-prev {
  z-index: 2 !important;
}

.blog-info {
  padding: 40px 0;
}

.blog-info h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.blog-info__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.blog-info__card {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #f6f6f6e5;
}

.blog-info__card img {
  nav-index: 383px;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-info__text {
  padding: 20px;
}

.blog-info__text h3 a {
  font-weight: 700;
  font-family: "Gilroy", sans-serif;
  font-size: 20px;
  margin-top: 25px;
  display: block;
  text-decoration: none;
  color: #000;
}

.blog-info__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-info__top span {
  font-size: 14px;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
}

.blog-info-arrow {
  margin-top: 20px;
  display: flex;
  justify-self: flex-end;
  font-family: "Gilroy", sans-serif;
  color: #000;
  gap: 10px;
  border-bottom: #000 solid 1px;
}

@media (max-width: 940px) {
  .blog-info__cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 612px) {
  .blog-info__cards {
    grid-template-columns: 1fr;
  }
}

.start {
  padding: 60px 0 80px 0;
  background: #009fe3;
}

.start__body {
  display: flex;
  flex-direction: column;
}

.start__body h2 {
  color: #fff;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.start__body h3 {
  margin-bottom: 40px;
  color: #fff;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  text-align: center;
  font-style: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
}

.start__callback {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.start__callback-input {
  background: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  border: none;
  max-width: 230px;
}
.start__callback-btn {
  background: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  font-weight: 600;
  color: #009fe3;
  border: none;
  cursor: pointer;
  max-width: 230px;
}

@media (max-width: 796px) {
  .start__callback {
    flex-direction: column;
  }
  .start__callback-input,
  .start__callback-btn {
    max-width: 600px;
    width: 100%;
  }
}

.review__card {
  border: 1px #e9ecef solid;
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
}

.review__services {
  padding: 60px 0;
  background-color: #f3f4f6;
}

.review__services-body h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}
.swiper-review {
  width: 90%;
}
.swiper-review .swiper-wrapper {
  align-items: center;
}

.review__card-name,
.review__card-text {
  font-family: "Gilroy", sans-serif;
}

.review__card-name {
  font-weight: 500;
  font-size: 20px;
}

.review__card-name,
.review__card-text {
  margin-top: 20px;
}

@media (max-width: 600px) {
  .stats__number {
    font-size: 35px;
  }
  .stats__item {
    min-width: auto;
  }
  .stats__desc {
    font-size: 18px;
    line-height: 110%;
  }
  .swiper-teams {
    width: 80%;
  }
}

.services__faq {
  width: 100%;
  padding: 60px 0;
}

.services__faq-acc {
  margin-bottom: 1rem;
}

.services__faq-item {
  border-radius: 10px;
  padding: 15px 15px 0 15px;
  margin-bottom: 1rem;
  margin-top: 15px;
  background-color: #f7f7f7;
  overflow: hidden; /* Важно: предотвращает выпрыгивание контента */
}

.services__faq-title {
  color: black;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  border-radius: 5px;
  outline: none;
  position: relative;
  transition: 0.6s ease;
  border: none;
  background: none;
  font-size: 20px;
  line-height: 159%;
  padding-right: 40px; /* Место для иконки */
}
.services__faq-title:hover {
  color: #007acc;
}
.services__faq-title::after {
  font-size: 1.5em;
  line-height: 1;
  content: "+";
  display: inline-block;
  vertical-align: middle;
  color: rgba(14, 163, 233, 0.932);
  margin-left: auto;
  transform: translateY(-50%);
  top: 50%; /* Изменено с 65% для лучшего выравнивания */
  font-weight: 700;
  right: 10px;
  position: absolute;
  transition: transform 0.6s ease;
}

.services__faq-content {
  max-height: 0;
  padding-right: 20px;
  overflow: hidden;
  transition:
    max-height 0.6s ease,
    opacity 0.6s ease 0.1s; /* Добавлена анимация opacity */
  margin-top: 0; /* Убрано, будет задаваться через padding в открытом состоянии */
  color: #9c9c9c;
  opacity: 0; /* Начальная прозрачность */
}

/* Состояние открытого элемента */
.services__faq-item.opened .services__faq-title::after {
  content: "×"; /* Крестик */
  color: rgba(14, 163, 233, 0.932);
  font-weight: 700;
  transform: translateY(-50%) rotate(0deg);
}

.services__faq-content {
  margin-bottom: 15px;
}

.services__faq-item.opened .services__faq-content {
  max-height: 1000px; /* Увеличено для больших текстов */
  opacity: 1; /* Плавное появление текста */
  margin-bottom: 15px; /* Отступ появляется только при открытии */
}

/* Для плавности можно добавить внутренний контейнер */
.services__faq-content-inner {
  padding: 10px 0; /* Внутренние отступы для контента */
}

.services__faq h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

/* Медиа-запрос для адаптивности */
@media (max-width: 768px) {
  .services__faq-title {
    font-size: 18px;
    padding-right: 35px;
  }

  .services__faq-title::after {
    font-size: 1.3em;
    right: 5px;
  }

  .services__faq-content {
    padding-right: 10px;
  }

  .services__faq h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.step-card {
  background-color: white;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid #eaeaea;
  flex: 1;
  display: flex;
  max-width: 224px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.steps {
  padding: 80px 0;
  background: #f3f4f6;
}
.steps h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}
.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4a6fa5, #166088);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(74, 111, 165, 0.25);
}

.step-title {
  font-size: 1.1rem;
  color: #1a1a2e;
  font-family: "Gilroy", sans-serif;
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.3;
  min-height: 50px;
}

.step-description {
  color: #666;
  font-size: 0.9rem;
  font-family: "Gilroy", sans-serif;
}

.step-card .step-number {
  color: white;
  background: #009fe3;
}

@media (max-width: 1200px) {
  .step-card {
    padding: 20px 15px;
  }
}

@media (max-width: 992px) {
  .steps-container {
    gap: 15px;
  }

  .step-card {
    padding: 18px 12px;
  }
}

@media (max-width: 768px) {
  .step-card {
    flex: 0 0 auto;
    padding: 20px 15px;
    margin-right: 10px;
  }

  .step-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 500px) {
  .step-card {
    padding: 18px 12px;
    max-width: 100%;
  }
}

.services__info-body h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  line-height: 1;
  letter-spacing: 0;
}

.services__info-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
}

.services__info-body h3 {
  font-weight: 700;
  font-size: 24px;
  margin: 50px 0 20px;
  color: #000;
  font-family: "Podkova", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  line-height: 48px;
  letter-spacing: 0;
}

.services__info {
  padding: 60px 0;
  position: relative;
  background-color: #f7f7f7;
}

.services__info-body {
  max-height: 600px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.services__info-body.expanded {
  max-height: 5000px;
}

.services__info-fade {
  position: absolute;
  bottom: 110px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 0.7) 30%, rgba(247, 247, 247, 0.9) 60%, rgba(247, 247, 247, 1) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.services__info-body.expanded + .services__info-fade {
  opacity: 0;
}

.services__info-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px auto 0;
  padding: 12px 24px;
  background: #009fe3;
  border: 1px solid #009fe3;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.6s ease;
}

.services__info-toggle:hover {
  background: #fff;
  color: #009fe3;
}

.toggle-icon {
  transition: transform 0.6s ease;
}

.services__info-body.expanded ~ .services__info-toggle .toggle-icon {
  transform: rotate(180deg);
}

@media (max-width: 600px) {
  .services__info-body h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .services__info-body h3 {
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .services__info-body p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .services__info-body {
    max-height: 600px;
  }

  .services__info-fade {
    bottom: 110px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .services__info-body {
    max-height: 600px;
  }

  .services__info-fade {
    bottom: 110px;
    height: 80px;
  }

  .services__info-toggle {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.documents {
  padding: 60px 0;
}

.documents__body h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}
.documents__cards {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.documents__card {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #f3f4f6;
  padding: 15px 30px;
  border-radius: 10px;
}
.documents__card-icon {
  background-color: #009fe3;
  border-radius: 5px;
  padding: 10px;
}

.documents__card-icon svg {
  width: 40px;
  height: 40px;
}

.documents__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.documents__info h3 {
  font-size: 1.1rem;
  color: #1a1a2e;
  font-family: "Gilroy", sans-serif;
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.documents__info p {
  color: #666;
  font-size: 0.9rem;
  font-family: "Gilroy", sans-serif;
}

.documents__info a {
  background-color: #009fe3;
  border-radius: 5px;
  border: none;
  text-decoration: none;
  padding: 10px 14px;
  display: block;
  font-family: "Gilroy", sans-serif;
  color: #fff;
  transition: 0.6s ease;
}

.documents__info a:hover {
  background-color: #777373;
}

.price {
  padding: 50px 0;
  background: #f3f4f6;
}

.price__cards {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
}

.price__body h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.price__cards-top {
  display: grid;
  gap: 11px;
  grid-template-columns: 2fr 2fr 1fr 1fr 1fr;
  background-color: #009fe3;
  padding: 10px 15px;
}

.price__cards-top p {
  font-size: 16px;
  font-family: "Gilroy", sans-serif;
  color: #fff;
}

.price__card {
  display: grid;
  gap: 11px;
  grid-template-columns: 2fr 2fr 1fr 1fr 1fr;
  padding: 15px 15px;
  border-bottom: 1px solid #e4e4e4;
  align-items: center;
}

.price__card:last-child {
  border-bottom: none;
}

.price__card p {
  font-size: 16px;
  font-family: "Gilroy", sans-serif;
}

.price__card a {
  font-size: 16px;
  background-color: #009fe3;
  border: none;
  padding: 10px 10px;
  color: #fff;
  text-decoration: none;
  max-width: 100px;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  font-family: "Gilroy", sans-serif;
  transition: ease 0.6s;
}

.price__card a:hover {
  background-color: #777373;
}

@media (max-width: 580px) {
  .price__card p,
  .price__cards-top p,
  .price__card a {
    font-size: 11px;
  }

  .price__card a {
    padding: 10px 5px;
  }
}
.search-services {
  padding: 60px 0;
}

.search-services__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.search-services__body h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}
.search-services__cards {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}

.search-services__card a {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  justify-content: space-between;
  line-height: 130%;
  font-size: 16px;
  font-family: "Gilroy", sans-serif;
  color: #fff;
  color: #4a4a4a;
  background: #f3f4f6;
  padding: 20px 30px;
  border-radius: 10px;
  transition: ease 0.6s;
}

.search-services__card a svg path {
  transition: ease 0.6s;
}
.search-services__card a:hover {
  background-color: #009fe3;
  color: #fff;
}

.search-services__card a:hover svg path {
  fill: #fff;
}

@media (max-width: 650px) {
  .search-services__cards {
    grid-template-columns: 1fr;
  }
}

.services__link {
  padding: 80px 0;
}

.services__link-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services__link-body h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}
.services__link-items {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
}
.services__link-header {
  display: flex;
  gap: 20px;
  align-items: center;
}

.services__link-header h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Gilroy", sans-serif;
}

.services__link-body {
  display: flex;
  flex-direction: column;
}

.services__link-item {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services__link-item h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
}

.services__link-item a {
  margin-bottom: 6px;
  font-size: 16px;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  color: #666;
  transition: ease 0.6s;
}

.services__link-item a:hover {
  color: #007acc;
}

@media (max-width: 947px) {
  .services__link-items {
    flex-direction: column;
    gap: 20px;
  }
}

.video {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.video h2 {
  color: #4a4a4a;
  margin-bottom: 50px;
  font-family: "Podkova", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 51px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#videoPlayer {
  width: 100%;
  display: block;
  cursor: pointer;
}

#videoPlayer::-webkit-media-controls {
  background: rgba(0, 0, 0, 0.7);
}

#videoPlayer::-webkit-media-controls-play-button,
#videoPlayer::-webkit-media-controls-pause-button {
  display: none !important;
}

#videoPlayer::-webkit-media-controls-current-time-display,
#videoPlayer::-webkit-media-controls-time-remaining-display {
  color: #fff;
  font-size: 14px;
}

#videoPlayer::-webkit-media-controls-timeline {
  border-radius: 2px;
  height: 4px;
}

#videoPlayer::-webkit-media-controls-timeline::-webkit-slider-thumb {
  background-color: #fff;
  width: 12px;
  height: 12px;
}

#videoPlayer::-webkit-media-controls-volume-slider {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  height: 4px;
}

#videoPlayer::-webkit-media-controls-volume-slider::-webkit-slider-thumb {
  background-color: #fff;
  width: 12px;
  height: 12px;
}

#videoPlayer::-webkit-media-controls-mute-button {
  color: #fff;
}

#videoPlayer::-webkit-media-controls-fullscreen-button {
  color: #fff;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 2;
  touch-action: manipulation; /* Для мобильных устройств */
}

.play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  touch-action: manipulation;
}

.play-button:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 1);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #333;
  margin-left: 5px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  body {
    padding: 10px;
    align-items: flex-start;
    padding-top: 40px;
  }

  .play-button {
    width: 70px;
    height: 70px;
  }

  .play-icon {
    border-width: 12px 0 12px 20px;
  }

  /* Улучшаем видимость контролов на мобильных */
  #videoPlayer::-webkit-media-controls {
    background: rgba(0, 0, 0, 0.8);
  }

  #videoPlayer::-webkit-media-controls-current-time-display,
  #videoPlayer::-webkit-media-controls-time-remaining-display {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-icon {
    border-width: 10px 0 10px 16px;
  }
}

/* Для Firefox */
#videoPlayer::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.3);
}

#videoPlayer::-moz-range-thumb {
  background-color: #fff;
  border: none;
}

@media (max-width: 600px) {
  .stats__body h2,
  .expertise__areas-body h2,
  .teams__bodyy h2,
  .gratitude h2,
  .blog-info h2,
  .partners__body h2,
  .start__body h2,
  .services__faq h2,
  .search-services__body h2,
  .review__services-body h2,
  .review__services-body h2,
  .documents__body h2,
  .bankruptcy__title,
  .steps h2,
  .services__link-body h2,
  .price__body h2,
  .video h2 {
    font-size: 30px;
  }
}
