/* Primary font и primary color */
:root {
  --primary-font: 'Roboto Flex', sans-serif;
  --primary-color: #0040EE;
  --hover-color: #0033bb;
}

body {
  font-family: var(--primary-font);
}

/* Контейнер: десктоп */
.container {
  max-width: 1440px;
  padding-left: 120px;
  padding-right: 120px;
}

.container .row {
  width: 100%;
}

.row {
  padding: 0px;
}

.box {
  padding: 0px;
}


/* Пример использования primary color для ссылок и кнопок */
a,
.btn-primary {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #0033bb;
  border-color: #0033bb;
}

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

p {
  margin: 0;
}

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

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* HEADER */
.header-container {
  padding-top: 30px;
}

.header-row {
  display: flex;
  align-items: flex-start;
}

.header-logo p {
  color: rgba(15, 15, 15, 1);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;

}

.header-menu ul {
  display: flex;
  justify-content: center;
  gap: 62px;
}

.header-menu ul li a {
  color: rgba(15, 15, 15, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  transition: all 0.3s ease;
}

.header-menu ul li a:hover {
  color: var(--hover-color);
}

.header-menu ul li a {
  color: rgba(15, 15, 15, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
}

.header-buttons a {
  display: inline-block;
}

.header-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Бургер-кнопка (только мобилка) */
.header-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
  transition: opacity 0.2s ease;
}

.header-burger:hover {
  opacity: 0.8;
}

.header-burger:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.burger-line {
  display: block;
  width: 30px;
  height: 2px;
  background: rgba(15, 15, 15, 1);
  border-radius: 1px;
}

/* Оверлей и выезжающая панель меню */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(220px, 85vw);
  background: #fff;
  z-index: 1001;
  padding: 80px 35px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 0 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  height: fit-content;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

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

.mobile-menu-nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-link {
  color: rgba(15, 15, 15, 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: inline-block;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: var(--primary-color);
}

.mobile-menu-social {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding-top: 32px;
}

.mobile-menu-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;

}

.mobile-menu-social-link:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-color);
}

.mobile-menu-social-link img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.header-buttons a img {
  width: 56px;
  height: 56px;
}

/* intro */



.intro-row {
  position: relative;
  height: 700px;

}

.intro-content-box {
  padding-top: 100px;
}

.intro-image-box {
  position: absolute;
  top: -90px;
  right: 170px;
}

.intro-content-box h1 {
  color: rgba(15, 15, 15, 1);
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0px;
  text-align: left;
}

.intro-content-box p {
  color: rgba(93, 93, 93, 1);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: left;
  margin-top: 40px;
}

.intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;
  color: white;
  padding: 16px 24px;
  transition: all 0.3s ease;
  margin-top: 40px;
  width: fit-content;
}

.intro-btn .btn-arrow {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.intro-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* shape — на всю ширину экрана, поверх картинки героя */
.intro-shape-box {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  z-index: 40;
  margin-top: -120px;
}

.intro-shape-box img {
  width: 100%;
  display: block;
  vertical-align: middle;
}

.intro-shape-desctop {
  min-height: 249px;
}

/* ABOUT */

.about-container {
  padding-top: 50px;
}

.title {
  color: rgba(15, 15, 15, 1);
  font-size: 36px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0px;
  text-align: left;
}

.about-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 90px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: rgba(0, 64, 238, 1);
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  padding: 16px 24px;
  transition: all 0.3s ease;
}

.about-btn .btn-arrow {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.about-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.about-box-img {
  text-align: right;
  position: relative;

}

.about-box-img img {
  position: absolute;
  bottom: -100px;
  right: -90px;
  z-index: 2000;
}

/* РАМКИ */
.about-box-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  gap: 32px;
  padding: 58px;
  box-sizing: border-box;
  border-radius: 30px;
  backdrop-filter: blur(16.899999618530273px);
  background: white;
  position: relative;

}

.about-box-content::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(0, 64, 238, 0) 0%, rgba(0, 64, 238, 1) 100%);
  z-index: 0;
  pointer-events: none;
}

.about-box-content::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background: white;
  backdrop-filter: blur(16.899999618530273px);
  z-index: 0;
  pointer-events: none;
}

.about-box-content>* {
  position: relative;
  z-index: 1;
}

.about-content-text-title {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0px;
  text-align: left;
}

.about-content-text-description {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0px;
  text-align: left;
  width: 399px;
}

/* Services */
.services-container {
  padding-top: 100px;
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 44px;
  gap: 20px;
}

.services-box {
  padding: 26px;
  box-sizing: border-box;
  border-radius: 30px;
  background: #fff;
  position: relative;
}

@media (min-width: 768px) {
  .services-box {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (min-width: 1200px) {
  .services-box {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

/* Градиент */
.services-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(0, 64, 238, 0) 0%, rgba(0, 64, 238, 1) 100%);
  z-index: 0;
  pointer-events: none;
}

.services-box::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background: #fff;
  z-index: 0;
  pointer-events: none;
}

.services-box>* {
  position: relative;
  z-index: 1;
}

.services-box-title {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 0%;
  text-align: left;
}

.services-box-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.services-box-description.is-open {
  max-height: 1000px;
  opacity: 1;
}

.services-box-description-title {
  color: rgba(0, 0, 0, 1);
  font-style: Medium;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: left;
  margin-top: 19px;
}

.services-box-description-text {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: left;
  margin-top: 20px;
}

.services-box-price {
  color: rgba(0, 64, 238, 1);
  font-size: 20px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0px;
  text-align: left;
  margin-top: 0px;
}

.services-box-btn-zone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0px;
}

.services-btn {
  border-radius: 12px;
  background: rgba(0, 64, 238, 1);
  font-style: Bold;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;
  padding: 16px 24px;
  color: white;
  transition: all 0.3s ease;
  width: 85%;
}

.chevron-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 56px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--primary-color);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(15, 15, 15, 1);
}

.chevron-btn:hover {
  background: rgba(0, 64, 238, 0.05);
  border-color: var(--hover-color);
}

.chevron-btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.chevron-btn svg {
  display: block;
  width: 34px;
  height: 34px;
  transition: transform 0.3s ease;
}

.chevron-btn.is-open svg {
  transform: rotate(180deg);
}

/* COUNTERS */

.counters-container {
  padding-top: 100px;
}

.counters-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 20px;
}

.counters-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30%;
}

.counters-box-title {
  color: rgba(0, 64, 238, 1);
  font-size: 96px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
}

.divider {
  width: 100%;
  height: 1px;
  background: #D7DAE2;
  margin-top: 0px;
  margin-bottom: 0px;
}

.counters-box-description {
  color: rgba(14, 14, 14, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  margin-top: 10px;
}

/* CASES */

.cases-container {
  padding-top: 100px;
}

.cases-row {
  display: flex;
  justify-content: space-between;
  padding-top: 96px;
  gap: 54px;
}

.cases-box {
  position: relative;
  padding: 44px 34px;
  box-sizing: border-box;
  border-radius: 30px;
  width: 305px;
  z-index: 1000;

}

/* Только градиентный бордер */
.cases-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(90deg, rgba(0, 64, 238, 0) 0%, rgba(0, 64, 238, 1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

/* Слой матового стекла поверх цифры — размывает то, что под ним (цифру) */
.cases-box::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  z-index: 1;
}

.cases-box>*:not(.cases-box-number) {
  position: relative;
  z-index: 2;
}

.cases-box-number {
  position: absolute;
  top: -10px;
  left: -5px;
  color: rgba(0, 0, 0, 1);
  font-size: 64px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;
  z-index: 0;
}

.cases-box-title {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0px;

}

.cases-box-description {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0px;
  text-align: left;
  margin-top: 15px;
}


/* CONTACT */
.contact-container {
  padding-top: 100px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
}

.contact-box-info {
  padding-right: 30px;
}

.contact-box-title {
  color: rgba(0, 0, 0, 1);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: left;
}

.contact-box-description {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
  margin-top: 37px;
}

.contact-buttons {
  margin-top: 37px;
  margin-left: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input {
  padding: 17px 23px;
  color: rgba(105, 105, 105, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
  border-radius: 12px;
  border: none;
  background: transparent;
}

.contact-input-wrapper {
  position: relative;
  border-radius: 12px;
}

.contact-input-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(90deg, rgba(0, 64, 238, 0) 0%, rgba(0, 64, 238, 1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

.contact-input-wrapper::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 11px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  z-index: 0;
}

.contact-input {
  position: relative;
  z-index: 1;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
}

.contact-form-btn {
  margin-top: 10px;
  font-size: 16px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;
  color: white;
  padding: 10px 16px;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: fit-content;
}

/* FOOTER */
.footer-container {
  background: #f3f3f3;
  margin-top: 100px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
}

.footer-title {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  line-height: 11px;
  letter-spacing: 0px;
  text-align: left;
}

.footer-description {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 11px;
  letter-spacing: 0px;
  text-align: left;
  margin-top: 15px;
}

.footer-box-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 20px;

}

.footer-description-left {
  width: 280px;
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
}

.footer-copyright {
margin-top: 38px;
padding-bottom: 10px;
}

.footer-copyright-text {
text-align: center;
color: rgba(0, 0, 0, 1);
font-size: 12px;
font-weight: 300;
line-height: 24px;
letter-spacing: 0px;
}

.olexa {
margin-top: 10px;
}











































/* Контейнер: мобильная версия */
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .header-row {
    align-items: center;
    width: 108% !important;
  }

  .header-logo {
    flex: 1;
  }

  .header-logo p {
    font-size: 12px;
  }

  /* INTRO */

  .intro-container {
    overflow: hidden;
    object-fit: cover;
    position: relative;
    z-index: 50;
  }

  .intro-row {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .intro-image-box-mobile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .intro-content-box {
    padding-top: 38px;

  }

  .intro-image-box {
    position: absolute;
    top: -90px;
    right: 170px;
  }

  .intro-content-box h1 {
    color: rgba(15, 15, 15, 1);
    font-size: 32px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0px;
    text-align: left;
  }

  .intro-content-box p {
    color: rgba(93, 93, 93, 1);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: left;
    margin-top: 40px;
  }

  .intro-btn {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    background: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    color: white;
    padding: 10px 24px 16px 24px;
    transition: all 0.3s ease;
    width: 311px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 72px;
    z-index: 100;
  }

  .intro-btn .btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translate(4px, 7px);
  }



  .intro-btn .btn-arrow svg {
    display: block;
    vertical-align: middle;
  }





  /* shape — на всю ширину экрана, поверх картинки героя */
  .intro-shape-box {
    width: 115vw;
    margin-left: calc(-50vw + 21%);
    position: relative;
    z-index: 40;
    margin-top: -50px;
  }

  .intro-shape-box img {
    width: 130%;

  }

  /* ABOUT */

  .about-container {
    padding-top: 30px;

  }

  .title {
    color: rgba(15, 15, 15, 1);
    font-size: 24px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0px;
    text-align: left;
    padding: 0;
  }

  .about-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 0px;
  }

  .about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    background: rgba(0, 64, 238, 1);
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    padding: 16px 24px;
    transition: all 0.3s ease;
  }

  .about-btn .btn-arrow {
    display: inline-flex;
    transition: transform 0.25s ease;
  }

  .about-btn:hover .btn-arrow {
    transform: translateX(4px);
  }

  .about-box-img {
    text-align: right;
  }

  /* РАМКИ */
  .about-box-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    gap: 15px;
    padding: 0px;
    box-sizing: border-box;
    border-radius: 30px;
    backdrop-filter: blur(16.899999618530273px);
    background: white;
    position: relative;

  }

  .about-box-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(90deg, rgba(0, 64, 238, 0) 0%, rgba(0, 63, 238, 0) 100%);
    z-index: 0;
    pointer-events: none;
  }

  .about-box-content::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    background: white;
    backdrop-filter: blur(16.899999618530273px);
    z-index: 0;
    pointer-events: none;
  }

  .about-box-content>* {
    position: relative;
    z-index: 1;
  }

  .about-content-text-title {
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 0px;
    text-align: left;
    margin-top: 30px;
  }

  .about-content-text-description {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0px;
    text-align: left;
    width: 100%;
  }

  /* Services */
  .services-container {
    padding-top: 50px;
  }

  .services-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 0px;
    margin: 0;
  }

  .services-box {
    padding: 16px;
    box-sizing: border-box;
    border-radius: 15px;
    background: #fff;
    position: relative;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 10px;
  }

  .services-box:last-child {
    margin-bottom: 0;
  }

  /* Градиент */
  .services-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(90deg, rgba(0, 64, 238, 0) 0%, rgba(0, 64, 238, 1) 100%);
    z-index: 0;
    pointer-events: none;
  }

  .services-box::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    background: #fff;
    z-index: 0;
    pointer-events: none;
  }

  .services-box>* {
    position: relative;
    z-index: 1;
  }

  .services-box-title {
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: 0%;
    text-align: left;
  }

  .services-box-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
    opacity: 0;
  }

  .services-box-description.is-open {
    max-height: 1000px;
    opacity: 1;
  }

  .services-box-description-title {
    color: rgba(0, 0, 0, 1);
    font-style: Medium;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: 0%;
    text-align: left;
    margin-top: 15px;
  }

  .services-box-description-text {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0px;
    text-align: left;
    margin-top: 20px;
  }

  .services-box-price {
    color: rgba(0, 64, 238, 1);
    font-size: 16px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0px;
    text-align: left;
    margin-top: 0px;
  }

  .services-box-btn-zone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
  }

  .services-btn {
    border-radius: 12px;
    background: rgba(0, 64, 238, 1);
    font-style: Bold;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    padding: 16px 24px;
    color: white;
    transition: all 0.3s ease;
    width: 77%;
  }

  .chevron-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 56px;
    padding: 0;
    background: #ffffff;
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(15, 15, 15, 1);
  }

  .chevron-btn:hover {
    background: rgba(0, 64, 238, 0.05);
    border-color: var(--hover-color);
  }

  .chevron-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }

  .chevron-btn svg {
    display: block;
    width: 34px;
    height: 34px;
    transition: transform 0.3s ease;
  }

  .chevron-btn.is-open svg {
    transform: rotate(180deg);
  }

  /* CASES */

  .cases-container {
    padding-top: 50px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cases-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 48px;
    gap: 24px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .cases-row .col-12 {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .cases-box {
    position: relative;
    padding: 20px 32px;
    box-sizing: border-box;
    border-radius: 30px;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
  }

  /* Только градиентный бордер */
  .cases-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(90deg, rgba(0, 64, 238, 0) 0%, rgba(0, 64, 238, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
  }

  /* Слой матового стекла поверх цифры — размывает то, что под ним (цифру) */
  .cases-box::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: 1;
  }

  .cases-box>*:not(.cases-box-number) {
    position: relative;
    z-index: 2;
  }

  .cases-box-number {
    position: absolute;
    top: -10px;
    left: -5px;
    color: rgba(0, 0, 0, 1);
    font-size: 36px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    z-index: 0;
  }

  .cases-box-title {
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0px;

  }

  .cases-box-description {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0px;
    text-align: left;
    margin-top: 10px;
  }


  /* CONTACT */
  .contact-container {
    padding-top: 50px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
  }



  .contact-box-info {
    padding-right: 0px;
  }

  .contact-box-title {
    color: rgba(0, 0, 0, 1);
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0px;
    text-align: left;
  }

  .contact-box-description {
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    margin-top: 14px;
  }

  .contact-buttons {
    margin-top: 37px;
    margin-left: 20px;
  }

  .contact-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .contact-form input {
    width: 100%;
    padding: 12px 22px;
    color: rgba(105, 105, 105, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    border-radius: 12px;
    border: none;
    background: transparent;
  }

  .contact-input-wrapper {
    position: relative;
    border-radius: 12px;
    width: 100%;
  }

  .contact-input-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(90deg, rgba(0, 64, 238, 0) 0%, rgba(0, 64, 238, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
  }

  .contact-input-wrapper::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 11px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: 0;
  }

  .contact-input {
    position: relative;
    z-index: 1;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
  }

  .contact-form-btn {
    margin-top: 10px;
    font-size: 16px;
    padding: 10px 16px;
  }

  /* FOOTER */
.footer-container {
  background: #f3f3f3;
  margin-top: 50px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 30px;
  flex-direction: column-reverse;
  padding-left: 30px;
}

.footer-title {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  line-height: 11px;
  letter-spacing: 0px;
  text-align: left;
  margin-top: 30px;
}

.footer-description {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 400;
  line-height: 11px;
  letter-spacing: 0px;
  text-align: left;
  margin-top: 10px;
}

.footer-box-left {
  display: flex;
  flex-direction: column !important;
  justify-content: flex-end;
  gap: 15px;

}

.footer-description-left {
  width: 280px;
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
}

.footer-copyright {
margin-top: 38px;
padding-bottom: 10px;
}

.footer-copyright-text {
text-align: center;
color: rgba(0, 0, 0, 1);
font-size: 12px;
font-weight: 300;
line-height: 24px;
letter-spacing: 0px;
}

.olexa {
margin-top: 10px;
}




}









/* Лёгкое дрожание иконок при наведении — только десктоп */
@media (min-width: 768px) {
  @keyframes icon-shake {

    0%,
    100% {
      transform: translateX(0);
    }

    25% {
      transform: translateX(-3px);
    }

    50% {
      transform: translateX(3px);
    }

    75% {
      transform: translateX(-1px);
    }
  }

  .header-buttons a img {
    display: inline-block;
    transition: transform 0.2s ease-out;
  }

  .header-buttons a:hover img {
    animation: icon-shake 0.45s ease-in-out;
  }
}