@charset "UTF-8";
:root {
  --bg-black: #f2f2f2;
  --color-black: #2a62b5;
  --logo-black: #393e3a;
  --logo-gold: #fddc6f;
  --color-white: #ffffff;
  --bg: #f6f8fc;
  --card: #ffffff;
  --text: #1b1f2a;
  --muted: #6b7280;
  --accent: #4f46e5;
  --accent2: #06b6d4;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --radius: 18px;
}

/*--- COMMON ---*/
body {
  font-family: "Inter", sans-serif;
  background-color: #fafcff;
  color: #222222;
  font-size: 16px;
  line-height: 1.4;
  scrollbar-width: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 15px;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  h1 {
    font-size: calc(28px + 27.2 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  h1 {
    font-size: calc(28px + 16 * 100vw / 1900);
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: calc(28px + 13.6 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  h2 {
    font-size: calc(28px + 8 * 100vw / 1900);
  }
}

@media (max-width: 767px) {
  h3 {
    font-size: calc(20px + 10.2 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  h3 {
    font-size: calc(20px + 6 * 100vw / 1900);
  }
}

p:not(:last-child) {
  margin: 0 0 10px 0;
}

a {
  text-decoration: none;
  color: #222222;
}

.btn {
  padding: 8px 18px;
  background-image: linear-gradient(240deg, #4686ec 13%, #3660ac);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: filter 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/*--- COMMON ---*/
/*--- HEADER ---*/
.header-top {
  padding: 8px 0;
  background-color: #f5f5fa;
}
@media (max-width: 842px) {
  .header-top {
    display: none;
  }
}

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

.wrapper-header-top--mobile {
  display: none;
}
@media (max-width: 842px) {
  .wrapper-header-top--mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 20px 0 0 0;
  }
}
@media (max-width: 842px) {
  .wrapper-header-top--mobile .wrapper-header-top__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 842px) {
  .wrapper-header-top--mobile .wrapper-header-top__left .time {
    margin: 10px 0 0 0;
  }
}
@media (max-width: 842px) {
  .wrapper-header-top--mobile .wrapper-header-top__rigth {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px 0 0 0;
  }
}
.wrapper-header-top--mobile .wrapper-header-top__rigth .btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  margin: 10px 0 0 0;
}

.wrapper-header-top__left {
  display: flex;
}

.address {
  font-style: normal;
  font-size: 14px;
}
.address .fa {
  color: #2a62b5;
}

.time {
  font-size: 14px;
  margin: 0 0 0 30px;
}
.time .fa {
  color: #2a62b5;
}

.mail-link {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.mail-link .fas {
  color: #2a62b5;
  margin: 0 10px 0 0;
}

.wrapper-header-top__rigth {
  display: flex;
  align-items: center;
}
.wrapper-header-top__rigth .btn {
  padding: 6px 20px;
  margin: 0 0 0 30px;
}

.header {
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid #eef2f6;
  padding: 10px 0;
}
@media (max-width: 842px) {
  .header {
    border-bottom: 1px solid #e1e1e1;
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 842px) {
  .header__container {
    justify-content: flex-start;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.img__logo {
  width: 120px;
}
@media (max-width: 842px) {
  .img__logo {
    width: 90px;
  }
}

@media (max-width: 842px) {
  .nav {
    position: fixed;
    display: none;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #ffffff;
    transform: translateX(150%);
    transition: transform 0.2s ease-in-out;
    z-index: 333;
  }
}

@media (max-width: 842px) {
  .nav--active {
    display: block;
    transform: translateX(0%);
  }
}

.nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
}
@media (max-width: 842px) {
  .nav__list {
    flex-direction: column;
    gap: 10px;
    padding: 0px 10px;
  }
}
@media (max-width: 842px) {
  .nav__list li:not(:last-child) {
    border-bottom: 1px solid #e1e1e1;
  }
}

.nav__link {
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s ease;
}

.nav__link:hover {
  color: #2a62b5;
}

.contacts {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contacts__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}

@media (max-width: 842px) {
  .contacts__item:nth-child(1) {
    text-align: center;
    margin: 0 0 0 10px;
  }
}
@media (max-width: 842px) {
  .contacts__item:nth-child(1) i {
    font-size: 13px;
  }
}

@media (max-width: 1096px) {
  .contacts__item:nth-child(2) {
    display: none;
  }
}

.contacts__item i {
  font-size: 1.2rem;
  color: #2a62b5;
}

.contacts__item:hover {
  color: #2a62b5;
}

.socials {
  display: flex;
  gap: 16px;
}
@media (max-width: 930px) {
  .socials {
    display: none;
  }
}

.socials__link {
  color: #2a62b5;
  font-size: 1.25rem;
  transition: 0.2s;
}

.socials__link:hover {
  color: #2a62b5;
  transform: translateY(-2px);
}

/*--- HEADER ---*/
/*--- BURGER ---*/
.burger {
  display: none;
  position: absolute;
  top: 10px;
  right: 15px;
  width: 30px;
  height: 25px;
  font-size: 0;
  background-color: transparent;
  border: none;
}
.burger::before, .burger::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #222222;
  border-radius: 30px;
  transition: transform 0.2s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  bottom: 0;
}
.burger__line {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #222222;
  border-radius: 30px;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media (max-width: 842px) {
  .burger {
    display: block;
  }
}

.burger--active::before {
  top: 48%;
  transform: rotate(47deg);
}

.burger--active::after {
  bottom: 48%;
  transform: rotate(-47deg);
}

.burger--active .burger__line {
  opacity: 0;
}

/*--- BURGER ---*/
/*--- HERO ---*/
.hero {
  background-image: url(../img/background/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 80px 0;
  position: relative;
  z-index: 0;
}
@media (max-width: 991px) {
  .hero {
    padding: 60px 0 60px 0;
  }
}
@media (max-width: 842px) {
  .hero {
    padding: 70px 0 60px 0;
  }
}
.hero::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(6, 10, 27, 0.85) 0%, rgba(6, 10, 27, 0.7) 40%, rgba(6, 10, 27, 0.2) 100%);
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.wrapper-hero {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 991px) {
  .wrapper-hero {
    flex-direction: column;
    gap: 30px;
  }
}

.wrapper-hero__left {
  width: 60%;
}
@media (max-width: 1240px) {
  .wrapper-hero__left {
    width: 65%;
  }
}
@media (max-width: 991px) {
  .wrapper-hero__left {
    width: 100%;
  }
}
.wrapper-hero__left h1 {
  width: 95%;
  line-height: 1.15;
  margin: 0 0 20px 0;
}
@media (max-width: 767px) {
  .wrapper-hero__left h1 {
    width: 100%;
  }
}
.wrapper-hero__left h1 .hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.4);
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .wrapper-hero__left h1 .hero-title {
    text-transform: none;
  }
}
.wrapper-hero__left h1 span {
  color: #5d9eff;
  background: none;
  -webkit-text-fill-color: initial;
}

@media (max-width: 767px) {
  .hero__desc {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .hero__desc {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}
.hero__desc {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px 0;
}
.hero__desc strong {
  color: #ffffff;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 98, 181, 0.2);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #fcfcfc;
  border: 1px solid rgba(245, 245, 245, 0.4);
  margin: 0 0 30px 0;
}

.group-hero {
  display: flex;
  align-items: center;
  margin: 40px 0 60px 0;
}
@media (max-width: 589px) {
  .group-hero {
    margin: 40px 0 40px 0;
    flex-direction: column;
  }
}
.group-hero .btn {
  font-size: 16px;
  box-sizing: border-box;
  padding: 16px 30px;
}
@media (max-width: 589px) {
  .group-hero .btn {
    padding: 10px 30px;
    width: 100%;
    justify-content: center;
  }
}
.group-hero .btn-phone {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-sizing: border-box;
  padding: 16px 30px;
  border-radius: 30px;
  margin: 0 0 0 20px;
  transition: 0.3s;
}
@media (max-width: 589px) {
  .group-hero .btn-phone {
    width: 100%;
    justify-content: center;
    padding: 10px 30px;
    margin: 10px 0 0 0;
  }
}
.group-hero .btn-phone:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero__advantages {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}
@media (max-width: 767px) {
  .hero__advantages {
    flex-wrap: wrap;
    margin: 20px 0;
  }
}

.adv-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-sizing: border-box;
  padding: 20px 15px;
  text-align: center;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .adv-card {
    flex: auto;
    width: calc(50% - 20px);
  }
}
.adv-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.adv-card__title {
  color: #5d9eff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.adv-card__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.2;
}

.hero__regions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.regions-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.regions-label i {
  color: #ffcf08;
}

.region-badge {
  color: #ffffff;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.2s;
  cursor: default;
}
.region-badge:hover {
  background: rgba(42, 98, 181, 0.8);
  border-color: #2a62b5;
}

/* Right side content (Services List) */
.wrapper-hero__right {
  width: 40%;
  max-width: 440px;
}
@media (max-width: 1240px) {
  .wrapper-hero__right {
    width: 35%;
    max-width: 380px;
  }
}
@media (max-width: 991px) {
  .wrapper-hero__right {
    width: 100%;
    max-width: none;
  }
}

.services-panel {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.services-panel__header {
  background-color: #4686ec;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  box-sizing: border-box;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 567px) {
  .services-panel__header {
    padding: 10px 10px;
  }
}
.services-panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-panel__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.services-panel__list li a {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 14px 30px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}
@media (max-width: 1240px) {
  .services-panel__list li a {
    padding: 14px 20px;
  }
}
@media (max-width: 567px) {
  .services-panel__list li a {
    padding: 10px 10px;
  }
}
.services-panel__list li a i:first-child {
  width: 24px;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 15px;
  text-align: center;
  transition: 0.3s;
}
.services-panel__list li a span {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  transition: 0.3s;
}
.services-panel__list li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.services-panel__list li a:hover i:first-child {
  color: #5d9eff;
}
.services-panel__list li a:hover span {
  color: #ffffff;
}
.services-panel {
  /* Active Service Item Highlight */
}
.services-panel__item--active a {
  background: linear-gradient(240deg, #264c89 13%, #3660ac);
  color: #ffffff !important;
  border-radius: 8px;
  margin: 6px 12px;
  padding: 12px 18px !important;
}
.services-panel__item--active a i:first-child {
  color: #ffcf08 !important;
}
.services-panel__item--active a span {
  color: #ffffff !important;
}
.services-panel__all {
  display: block;
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  font-size: 15px;
}
.services-panel__all:hover {
  background: rgba(0, 0, 0, 0.6);
  color: #5d9eff;
}

/*--- SERVICES ---*/
.services {
  padding: 70px 0 40px 0;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .services {
    padding: 50px 0;
  }
}

.tabs {
  margin: 40px auto;
}

/* header */
.tabs__header {
  display: flex;
  flex-wrap: wrap;
  background: rgba(111, 176, 250, 0.0549019608);
  border: 1px solid #d4efff;
  backdrop-filter: blur(2px);
  border-radius: 8px;
  overflow: hidden;
}

.tabs__button {
  flex: 1;
  padding: 15px 10px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .tabs__button {
    flex: none;
    width: 50%;
    padding: 10px 10px;
  }
}
@media (max-width: 567px) {
  .tabs__button {
    width: 100%;
    text-align: left;
  }
}

.tabs__button:not(:last-child) {
  border-right: 1px solid #aee1ff;
}
@media (max-width: 991px) {
  .tabs__button:not(:last-child) {
    border-right: none;
  }
}

@media (max-width: 991px) {
  .tabs__button:nth-child(1) {
    border-bottom: 1px solid #aee1ff;
    border-right: 1px solid #aee1ff;
  }
}
@media (max-width: 567px) {
  .tabs__button:nth-child(1) {
    border-right: none;
  }
}

@media (max-width: 991px) {
  .tabs__button:nth-child(2) {
    border-bottom: 1px solid #aee1ff;
  }
}
@media (max-width: 567px) {
  .tabs__button:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 991px) {
  .tabs__button:nth-child(3) {
    border-right: 1px solid #aee1ff;
  }
}
@media (max-width: 567px) {
  .tabs__button:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid #aee1ff;
  }
}

.tabs__button:hover {
  background: rgba(0, 119, 255, 0.137254902);
}

.tabs__button--active {
  border-bottom: 2px solid #007bff;
}

/* ===== КЛЮЧЕВОЕ ИЗМЕНЕНИЕ ===== */
.tabs__content {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 20px;
  margin-top: 60px;
  background: #fff;
  border-radius: 8px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}
.tabs__content--flex {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .tabs__content {
    flex-direction: column;
    margin: 40px 0 0 0;
    padding: 10px;
  }
}

.tabs-service {
  width: 60%;
}
@media (max-width: 991px) {
  .tabs-service {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .tabs-service h3 {
    font-size: calc(22px + 13.6 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .tabs-service h3 {
    font-size: calc(22px + 8 * 100vw / 1900);
  }
}

.tabs-bg {
  width: 38%;
}
@media (max-width: 991px) {
  .tabs-bg {
    width: 100%;
    margin: 14px 0 0 0;
  }
}
.tabs-bg img {
  width: 100%;
  max-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px;
}

.tabs.tabs--single .tabs__content {
  display: none;
}

.tabs.tabs--single .tabs__content--active {
  display: flex;
}

.services-card__footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.services-card__btn {
  display: flex;
  justify-content: center;
  width: 300px;
  color: #ffffff;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
@media (max-width: 991px) {
  .services-card__btn {
    padding: 10px 24px;
  }
}
.services-card__btn:hover {
  background-color: #0092e6;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(8, 123, 255, 0.3);
}
.services-card__tg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  background-color: #38b6ff;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s;
  flex-shrink: 0;
}
.services-card__tg:hover {
  background-color: #29a0eb;
  transform: scale(1.08);
}

/*--- CONTACT ---*/
.contact {
  background-color: #ffffff;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  padding: 80px 0;
}
@media (max-width: 567px) {
  .contact {
    padding: 70px 0;
  }
}

.wrapper-contact {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .wrapper-contact {
    flex-direction: column;
  }
}

.wrapper-contact__content {
  width: 66%;
}
@media (max-width: 960px) {
  .wrapper-contact__content {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.contact-inner {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin: 40px 0 0 0;
}
@media (max-width: 1250px) {
  .contact-inner {
    gap: 10px;
  }
}
@media (max-width: 1200px) {
  .contact-inner {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.contact-inner__item {
  width: calc(37.5% - 10px);
  box-sizing: border-box;
  padding: 20px;
  border-radius: 10px;
  background-color: #f5f5f5;
  border: 1px solid #e1e1e1;
}
@media (max-width: 1250px) {
  .contact-inner__item {
    padding: 12px;
  }
}
@media (max-width: 1200px) {
  .contact-inner__item {
    padding: 20px;
  }
}
.contact-inner__item .btn {
  display: block;
  box-sizing: border-box;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 14px 0 0 0;
}
@media (max-width: 1200px) {
  .contact-inner__item .btn {
    width: 70%;
  }
}
@media (max-width: 567px) {
  .contact-inner__item .btn {
    width: 100%;
  }
}

.contact-inner__item:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
}
@media (max-width: 1200px) {
  .contact-inner__item:first-child {
    width: calc(50% - 10px);
  }
}
@media (max-width: 740px) {
  .contact-inner__item:first-child {
    display: none;
  }
}

@media (max-width: 1200px) {
  .contact-inner__item:nth-child(2) {
    width: calc(50% - 10px);
  }
}
@media (max-width: 740px) {
  .contact-inner__item:nth-child(2) {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .contact-inner__item:nth-child(3) {
    width: 100%;
  }
}

address {
  font-style: normal;
}

.contact-icon {
  width: 100%;
}

.contact-inner__title {
  color: #919191;
  margin: 0 0 10px 0;
}

.contact-inner__link {
  font-size: 18px;
}
@media (max-width: 740px) {
  .contact-inner__link {
    display: block;
  }
}

.contact-social {
  display: flex;
  margin: 10px 0 0 0;
}

.contact-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 4px 4px;
  background-color: #b9c3d1;
}

.contact-social__img {
  width: 70%;
}

.contact-social__link:not(:last-child) {
  margin: 0 10px 0 0;
}

.contact-social__link:first-child:hover {
  background-color: #059ef7;
}

.contact-social__link:nth-child(2):hover {
  background: linear-gradient(45deg, #09dd50, #09dd50, #09dd50);
}

.contact-social__link:last-child:hover {
  background: linear-gradient(45deg, rgb(255, 68, 51), rgb(245, 20, 0));
}

.wrapper-contact__map {
  width: 31%;
}
@media (max-width: 960px) {
  .wrapper-contact__map {
    width: 100%;
  }
}

.map-contact {
  width: 100%;
  height: 100%;
}
@media (max-width: 960px) {
  .map-contact {
    height: 250px;
  }
}

/*--- CONTACT ---*/
/* --- FEEDBACK --- */
.reviews-carousel {
  background-color: #fafcff;
  border-top: 1px solid #e1e1e1;
  padding: 60px 0;
}

.reviews-carousel__header {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.reviews-carousel__controls {
  display: flex;
  gap: 12px;
}

.reviews-carousel__nav-btn {
  background-color: #f0f0f0;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #222;
}

.reviews-carousel__nav-btn:hover:not(:disabled) {
  background-color: #e2e2e2;
  transform: scale(0.96);
}

.reviews-carousel__nav-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.reviews-carousel__track-container {
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  box-sizing: border-box;
  padding: 10px 2px;
}

.reviews-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
  box-sizing: border-box;
  padding: 20px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  background-color: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  color: #4686ec;
  flex-shrink: 0;
}

.review-card__author-info {
  flex: 1;
}

.review-card__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}

.review-card__date {
  font-size: 14px;
  color: #6b7280;
  letter-spacing: 0.2px;
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.review-card__star {
  color: #ffb800;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-card__text {
  line-height: 1.48;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card__meta {
  border-top: 1px solid #f0f2f5;
  padding-top: 14px;
}

.review-card__tag {
  font-size: 14px;
  font-weight: 500;
}

.reviews-carousel__indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.reviews-carousel__dot {
  width: 8px;
  height: 8px;
  background-color: #cbd5e1;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.reviews-carousel__dot--active {
  background-color: #4686ec;
  width: 24px;
  border-radius: 12px;
}

@media (max-width: 991px) {
  .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 767px) {
  .review-card {
    flex: 0 0 100%;
  }
  .reviews-carousel__title {
    font-size: 24px;
  }
}
.review-card__text {
  word-break: break-word;
}

/*--- FAQ ---*/
.faq {
  background-color: #ffffff;
  padding: 60px 0;
  border-top: 1px solid #e1e1e1;
}

.faq-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 40px 0 0 0;
}
@media (max-width: 1080px) {
  .faq-wrapper {
    flex-direction: column;
  }
}

.faq-wrapper__content {
  width: calc(100% - 370px);
  border: 1px solid #e9edf2;
}
@media (max-width: 1080px) {
  .faq-wrapper__content {
    width: 100%;
  }
}

.faq-wrapper__question {
  width: 350px;
  border: 1px solid #e9edf2;
  box-sizing: border-box;
  padding: 15px 20px;
}
@media (max-width: 1080px) {
  .faq-wrapper__question {
    width: 100%;
    margin: 16px 0 0 0;
  }
}
.faq-wrapper__question h3 {
  margin: 10px 0 10px 0;
  text-align: center;
}
.faq-wrapper__question .btn {
  display: block;
  font-size: 16px;
  width: 70%;
  text-align: center;
  margin: 0 auto;
  margin-top: 18px;
}

.faq-wrapper__icon {
  display: block;
  width: 82px;
  height: 82px;
  border-radius: 100%;
  margin: 0 auto;
}

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

.faq__item {
  border-bottom: 1px solid #e9edf2;
  transition: background 0.2s, box-shadow 0.2s;
}

.faq__item--active {
  background: #4686ec;
  box-shadow: 0 0 0 2px rgba(70, 134, 236, 0.2), 0 4px 12px rgba(70, 134, 236, 0.1);
  position: relative;
}

.faq__question {
  width: 100%;
  background: transparent;
  border: none;
  font-size: 18px;
  box-sizing: border-box;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
  font-family: inherit;
}

.faq__item--active .faq__question {
  color: #ffffff;
}

.faq__question:hover {
  background: rgba(70, 134, 236, 0.08);
}

.faq__question-text {
  flex: 1;
  line-height: 1.4;
}

/* Иконка + анимация */
.faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 400;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  color: #4686ec;
}

/* Поворот иконки для открытого пункта */
.faq__item--active .faq__icon {
  transform: rotate(45deg);
  color: #4686ec;
}

/* Блок с ответом (скрыт по умолчанию) */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.2s ease;
  background: rgba(255, 255, 255, 0.8);
}

/* Когда активен — показываем ответ с анимацией */
.faq__item--active .faq__answer {
  max-height: 380px;
  /* достаточно для контента */
  transition: max-height 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.faq__answer-content {
  padding: 15px 20px;
  line-height: 1.55;
  border-top: 1px dashed #dce5ec;
  margin-top: 0;
}

/* Стилизация текста внутри ответа */
.faq__answer-content p {
  margin-bottom: 0.75rem;
}

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

/* Адаптивность */
@media (max-width: 640px) {
  .faq__question {
    padding: 16px 20px;
    font-size: 1rem;
  }
  .faq__answer-content {
    padding: 0.2rem 1.25rem 1.2rem 1.25rem;
  }
  .faq__title {
    font-size: 26px;
  }
  .faq__header {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  }
}
/* легкая доступность: фокус на кнопке */
.faq__question:focus-visible {
  outline: 2px solid #4686ec;
  outline-offset: -2px;
  border-radius: 12px;
  background: rgba(70, 134, 236, 0.1);
}

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

/*--- FAQ ---*/
.portfolio {
  padding: 60px 0;
  border-top: 1px solid #e1e1e1;
}
.portfolio h2 {
  margin: 0 0 2cqi 0;
  text-align: center;
}

.wrapper-portfolio {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 40px 0 0 0;
}

@media (max-width: 767px) {
  .wrapper-portfolio {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
/* Применяем стили к каждому 4-му ряду (8 элементов) и его повторениям */
.wrapper-portfolio__item:nth-child(8n+1),
.wrapper-portfolio-page__item:nth-child(8n+1) {
  grid-column-start: span 2;
}

.wrapper-portfolio__item:nth-child(8n+7),
.wrapper-portfolio-page__item:nth-child(8n+7) {
  grid-column-start: span 2;
}

@media (max-width: 767px) {
  .wrapper-portfolio__item:nth-child(8n+8),
  .wrapper-portfolio-page__item:nth-child(8n+8) {
    display: none;
  }
}
.wrapper-portfolio__img,
.wrapper-portfolio-page__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.wrapper-portfolio-page__item {
  max-height: 330px;
  overflow: hidden;
}

@media (max-width: 1240px) {
  .wrapper-portfolio-page__item {
    max-height: 290px;
  }
}
@media (max-width: 991px) {
  .wrapper-portfolio-page__item {
    max-height: 250px;
  }
}
@media (max-width: 450px) {
  .wrapper-portfolio-page__item {
    max-height: 220px;
  }
}
@media (max-width: 400px) {
  .wrapper-portfolio-page__item {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .wrapper-portfolio-page {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.title-gallery-main {
  line-height: 1.35;
}

/*--- PORTFOLIO ---*/
/*--- WEDGETS ---*/
.messenger-widgets {
  position: fixed;
  right: 60px;
  bottom: 60px;
  width: 74px;
  height: 74px;
  background: linear-gradient(240deg, rgb(225, 72, 211), rgb(17, 187, 226));
  border: 1px solid rgb(182, 229, 243);
  box-sizing: border-box;
  padding: 14px 14px;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: messenger-pulse 1.5s infinite;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.messenger-widgets--active {
  background: #646464;
  animation: none;
}

@media (max-width: 991px) {
  .messenger-widgets {
    display: none;
  }
}
@keyframes messenger-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(17, 187, 226, 0.6);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(17, 187, 226, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(17, 187, 226, 0);
  }
}
.widgets-img {
  width: 100%;
}

.widgets-img-close {
  width: 100%;
  display: none;
}

.widgets-menu {
  display: none;
  position: absolute;
  bottom: 74px;
  right: 4px;
  width: 300px;
  background-color: #fff;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  box-sizing: border-box;
  padding: 16px 16px;
  border-radius: 6px 6px;
}

.widgets-menu--active {
  display: block;
}

.widgets-menu__header {
  font-weight: 600;
  box-sizing: border-box;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #e1e1e1;
  color: #333;
}

.widgets-menu__body {
  padding: 12px 0 0px 0;
}

.widgets-text {
  font-size: 14px;
  line-height: 1.25;
  color: #696969;
}

.widgets-text:not(:last-child) {
  margin: 0 0 6px 0;
}

.group-widgets {
  display: flex;
  justify-content: space-between;
  margin: 12px 0 0 0;
}

.messenger-widget__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  box-sizing: border-box;
  padding: 6px 12px;
  border-radius: 6px 6px;
}

.messenger-widget__link--telegram {
  background-color: #2aabee;
}

.widgets-icon {
  margin: 0 10px 0 0;
}
.widgets-icon {
  width: 18px;
}

.widgets-icon--mobile {
  width: 25px;
  margin: 0;
}

.messenger-widget__link--max {
  background-color: #0077ff;
}

.widgets-menu__footer {
  padding: 10px 0 0 0;
}

/*--- WEDGETS ---*/
/*--- COMPANY ---*/
.about {
  padding: 60px 0;
  border-top: 1px solid #e1e1e1;
}

.wrapper-about {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1240px) {
  .wrapper-about {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .wrapper-about {
    display: flex;
    flex-direction: column;
  }
}

.about__content {
  background: var(--card);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 567px) {
  .about__content {
    padding: 10px;
  }
}

.about__content::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  opacity: 0.12;
  border-radius: 50%;
}

.about__title {
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  position: relative;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about__card {
  background: var(--card);
  border-radius: 8px;
  box-shadow: var(--shadow);
  box-sizing: border-box;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}
@media (max-width: 567px) {
  .about__card {
    padding: 10px;
  }
}

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

.about__card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  opacity: 0.12;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .about__number {
    font-size: calc(20px + 23.8 * (100vw - 320px) / 1900);
  }
}
@media (min-width: 767px) {
  .about__number {
    font-size: calc(20px + 14 * 100vw / 1900);
  }
}
.about__number {
  font-weight: 700;
  color: #4686ec;
  margin-bottom: 6px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
}
/*--- COMPANY ---*/
/*--- ADVANTAGES ---*/
.advantages {
  background-color: #ffffff;
  border-top: 1px solid #e1e1e1;
  padding: 60px 0;
}
.advantages h2 {
  text-align: center;
  margin: 0 0 10px 0;
}
.advantages .text {
  text-align: center;
}

.advantages-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0 0 0;
}

.advantages-wrapper__item {
  display: flex;
  justify-content: space-between;
  width: calc(33.333% - 14px);
  border-radius: 4px 4px;
  box-sizing: border-box;
  padding: 20px 20px;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}
@media (max-width: 1240px) {
  .advantages-wrapper__item {
    width: calc(50% - 14px);
  }
}
@media (max-width: 767px) {
  .advantages-wrapper__item {
    width: 100%;
    padding: 10px 10px;
  }
}

.group-icon {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  background-image: linear-gradient(240deg, #4686ec 13%, #4686ec);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

.advantages-wrapper__content {
  width: calc(100% - 55px);
}

.advantages-wrapper__title {
  font-weight: 600;
  margin: 0 0 6px 0;
}

.advantages-wrapper__text {
  font-weight: 300;
}

/*--- ADVANTAGES ---*/
/*--- MODAL ---*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
}

.modal:target {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 560px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .modal-container {
    width: 96%;
  }
}

.modal-content {
  position: absolute;
  top: 60px;
  width: 560px;
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 20px 20px;
  border-radius: 8px 8px;
}
@media (max-width: 767px) {
  .modal-content {
    top: 10px;
    width: 96%;
    padding: 12px 12px;
    height: 100vh;
    overflow-y: auto;
  }
}
.modal-content h3 {
  margin: 0 0 14px 0;
}

.form-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  font-weight: 500;
}
.form-close::before {
  position: absolute;
  content: "✖";
  top: 0;
  right: 0;
}
.form-close:hover {
  color: #eb3333;
}

.form-modal .btn {
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  justify-content: center;
  margin: 10px 0;
}

.label-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #bfbfbf;
  box-sizing: border-box;
  padding: 10px 10px;
  margin: 0 0 4px 0;
  text-align: center;
  cursor: pointer;
}

.form-text {
  margin: 0 0 4px 0;
}
.form-text span {
  color: #eb3333;
}

.form-modal__input {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  border: 1px solid #e1e1e1;
  outline-width: 2px;
  outline-color: rgba(0, 123, 255, 0.4509803922);
}

.form-modal__input::-moz-placeholder {
  font-size: 14px;
}

.form-modal__input::placeholder {
  font-size: 14px;
}

.wrapper-form {
  display: flex;
  justify-content: space-between;
  margin: 14px 0;
}
.wrapper-form--privaty {
  align-items: flex-start;
  margin: 4px 0 0 0;
}
@media (max-width: 567px) {
  .wrapper-form {
    flex-direction: column;
  }
}

.wrapper-form__group {
  width: 48.5%;
}
@media (max-width: 567px) {
  .wrapper-form__group {
    width: 100%;
  }
}

@media (max-width: 567px) {
  .wrapper-form__group:first-child {
    margin: 0 0 10px 0;
  }
}

.form-modal__massage {
  width: 100%;
  border: 1px solid #e1e1e1;
  height: 80px;
  box-sizing: border-box;
  padding: 10px 10px;
  border-radius: 4px 4px;
  margin: 0 0 10px 0;
  outline-width: 2px;
  outline-color: rgba(0, 123, 255, 0.4509803922);
}

.form-modal__file {
  display: none;
}

.text-label {
  font-size: 14px;
}

.subtext-modal {
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 0 8px;
}
.subtext-modal a {
  color: #0077ff;
}

/*--- MODAL ---*/
/* искусственный контент, чтобы footer прижимался */
.content-placeholder {
  flex: 1;
  background: linear-gradient(145deg, #e9eef3 0%, #dfe6ed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.content-placeholder p {
  background: rgba(255, 255, 240, 0.7);
  padding: 1rem 2rem;
  border-radius: 48px;
  font-weight: 500;
  color: #1e2a3e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* ========== FOOTER BEM BLOCK ========== */
.footer {
  background: linear-gradient(360deg, rgb(6, 10, 27) 0%, rgba(6, 10, 27, 0.95) 40%, rgba(6, 10, 27, 0.85) 100%);
  color: #eef2f8;
  border-top: 1px solid #1f3a4b;
}

/* контейнер — центрирование, отступы */
.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
}

/* основная сетка: 4 колонки на десктопе, адаптив */
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 1064px) {
  .footer__grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}
@media (max-width: 567px) {
  .footer__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* каждая колонка с вертикальным отступом */
.footer__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* логотип-блок */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.25rem;
}

.footer-logo {
  width: 200px;
}

.footer__logo-tagline {
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* заголовки внутри секций */
.footer__heading {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #f7f9fc;
}

/* список услуг — без маркеров */
.footer__services-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__service-item {
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.footer__service-item a {
  color: #f7f9fc;
}

.footer__service-item::before {
  content: "▹";
  color: #f0b34b;
  font-size: 16px;
  display: inline-block;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #eef2f8;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.footer__address-text {
  line-height: 1.5;
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer__address-icon,
.footer__clock-icon {
  font-size: 1.2rem;
  min-width: 24px;
}

.footer__work-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 0.25rem;
}
.footer__work-hours .btn {
  justify-content: center;
  margin: 10px 0 2px 0;
}

.footer__hour-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 5px;
}

.footer__hour-day {
  font-weight: 500;
}

.footer__hour-time {
  opacity: 0.9;
}

.footer__hour-note {
  font-style: italic;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
  opacity: 0.7;
}

.footer__copyright {
  letter-spacing: 0.2px;
}
.footer__copyright a {
  color: #eef2f8;
}

/* адаптив */
@media (max-width: 768px) {
  .footer__container {
    padding: 2rem 1.25rem 1.5rem;
  }
  .footer__grid {
    gap: 2rem;
  }
  .footer__heading {
    font-size: 1.1rem;
  }
  .footer__logo-text {
    font-size: 1.4rem;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* дополнительные мелкие правки */
.footer__address-block,
.footer__hours-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__service-item {
  word-break: break-word;
}