*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #0f1115;
  color: #fff;
  overflow-x: hidden;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}
html {
  scroll-behavior: smooth;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(36, 242, 255, 0.15);
  padding: 20px 0;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), background 0.4s,
    padding-right 0.3s;
}
.header.hide {
  transform: translateY(-100%);
}
.header.scrolled {
  padding: 15px 0;
  background: rgba(15, 17, 21, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.header-logo {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.header-logo span {
  background: linear-gradient(135deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.header-nav {
  display: flex;
  gap: 40px;
}
.header-nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.header-nav a:hover {
  color: #24f2ff;
}
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #24f2ff;
  transition: width 0.3s ease;
}
.header-nav a:hover::after {
  width: 100%;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #24f2ff;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone svg {
  flex-shrink: 0;
}
.header-btn {
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
  transition: all 0.4s ease;
  white-space: nowrap;
}
.header-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 122, 255, 0.6);
}
.header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.header-burger span {
  width: 30px;
  height: 3px;
  background: #24f2ff;
  border-radius: 3px;
  transition: 0.3s;
}

/* === Мобильная версия === */
@media (max-width: 1024px) {
  .header-nav,
  .header-right {
    display: none;
  }

  .header-burger {
    display: flex;
    margin-right: 10px;
  }

  .header-inner {
    justify-content: space-between;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(15, 17, 21, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 20px 60px;
    text-align: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    overflow-y: auto;
  }

  .mobile-menu.active {
    transform: translateY(0);
  }

  .mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
  }

  .mobile-menu-close svg {
    stroke: #fff;
    transition: stroke 0.3s;
  }

  .mobile-menu-close:hover svg {
    stroke: #24f2ff;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .mobile-nav a {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
  }

  .mobile-nav a:hover {
    color: #24f2ff;
  }

  .mobile-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .mobile-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #24f2ff;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-btn {
    background: linear-gradient(135deg, #007aff, #24f2ff);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
    transition: all 0.4s ease;
  }

  .mobile-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 122, 255, 0.6);
  }

  .header-burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header-burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header-burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

.hero {
  padding-top: 100px; /* Отступ под шапку */
  background: linear-gradient(180deg, #0f1115 0%, #1c1e24 60%, #007aff 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
.hero-bg {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
}
.hero-bg img {
  width: 15vw;
}
.hero__slider-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  z-index: 3;
}
.heroSlider,
.heroSlider .swiper-wrapper,
.heroSlider .swiper-slide {
  width: 100% !important;
  height: calc(100vh - 100px) !important; /* Минус высота шапки */
}
.hero__slide {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
.hero__img {
  width: 50%;
  position: relative;
}
.hero__img img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__content {
  width: 50%;
  display: flex;
  align-items: flex-start;
  padding: 0 0 0 40px;
}
.hero__content .container {
  max-width: 100%;
  margin: 120px 80px 0 20px;
}
.hero__content-inner {
  display: flex;
  flex-direction: column;
  height: 50vh;
  justify-content: center;
}
.hero__title {
  background: linear-gradient(135deg, #51a2fd, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 20px 0;
}
.hero__subtitle {
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 80px;
}
.btn-primary {
  width: 300px;
  text-align: center;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 18px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-primary:hover {
  box-shadow: 0 15px 40px rgba(0, 122, 255, 0.6);
  transform: translateY(-2px);
}
.btn-outline {
  width: 300px;
  text-align: center;
  background: transparent;
  border: 2px solid #24f2ff;
  color: #24f2ff;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 16px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-outline:hover {
  background: #24f2ff;
  color: #0f1115;
  box-shadow: 0 10px 30px rgba(36, 242, 255, 0.3);
}
.hero__next {
  position: absolute;
  left: 100%;
  bottom: 230px;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}
.hero__next:hover {
  transform: translateX(-50%) scale(1.08);
}
.hero__next svg {
  width: 44px;
  height: 44px;
  fill: #007aff;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  padding: 0 15px;
  gap: 40px 0;
  align-items: center;
  margin-top: 0px;
}
.hero-info__left {
  width: 50%;
  padding-right: 80px;
}
.hero-info__right {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.hero-info__title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 50px;
}
.hero-info__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  background: linear-gradient(90deg, #007aff, #24f2ff);
  width: 100px;
  height: 4px;
  border-radius: 2px;
}
.hero-info__text {
  font-size: 26px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero-info__link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  color: #24f2ff;
  text-decoration: none;
  transition: 0.3s;
}
.hero-info__link:hover {
  color: #fff;
}
.hero-info__link span {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: 0.3s;
}
.hero-info__link:hover span {
  margin-right: 30px;
}
.hero-info__link svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.hero-stat img {
  margin-bottom: 20px;
  height: 70px;
  filter: brightness(0) invert(1) opacity(0.8);
}
.hero-stat span {
  display: block;
  font-weight: 700;
  font-size: 60px;
  text-transform: uppercase;
  color: #24f2ff;
  margin-bottom: 8px;
}
.hero-stat p {
  font-size: 26px;
  color: #fff;
  margin: 0;
}

@media (max-width: 991px) {
  .hero {
    padding-top: 100px;
  }
  .heroSlider,
  .heroSlider .swiper-wrapper,
  .heroSlider .swiper-slide {
    height: calc(100vh - 100px) !important;
  }
  .hero__slide {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__img,
  .hero__content {
    width: 100%;
  }
  .hero__content {
    padding: 60px 20px 100px;
  }
  .hero__next {
    width: 70px;
    height: 70px;
    bottom: 15%;
    left: 70%;
  }
  .hero-info {
    flex-direction: column;
    margin-top: -100px;
  }
  .hero-info__left,
  .hero-info__right {
    width: 100%;
    padding: 0;
  }
  .hero-info__right {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
  }
  .heroSlider,
  .heroSlider .swiper-wrapper,
  .heroSlider .swiper-slide {
    height: calc(100vh - 10px) !important;
  }
  .hero__title {
    text-transform: none;
    font-size: 24px;
  }
  .hero__subtitle {
    text-transform: none;
    font-size: 20px;
  }
  .hero__next {
    width: 50px;
    height: 50px;
    left: 80%;
    top: 70%;
  }
  .hero-info__title {
    font-size: 20px;
  }
  .hero__buttons {
    padding-top: 10px;
    margin-top: 20px;
  }
  .btn-outline,
  .btn-primary {
    width: 100%;
    text-align: center;
  }
  .hero-info__link span {
    width: 90px;
  }
  .hero-stat span {
    font-size: 30px;
  }
  .hero-stat img {
    height: 30px;
  }
  .hero__img img {
    height: 350px;
    object-fit: cover;
  }
  .hero__content {
    width: 100%;
    padding: 0;
  }
  .hero__content .container {
    max-width: 100%;
    margin: 0 10px 150px 20px;
  }
  .hero-info__text {
    font-size: 20px;
    line-height: 1.3;
  }
  .hero-stat p {
    font-size: 20px;
  }
}

.catalog {
  padding: 120px 0;
  background: #fff;
}
.catalog__title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.catalog__subtitle {
  max-width: 1000px;
  margin: 0 auto 100px;
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  color: #000;
}
.catalog-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.catalog-block {
  background: linear-gradient(180deg, #1c1e24 0%, #2a2d35 100%);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.catalog-block:hover {
  transform: translateY(-16px);
  box-shadow: 0 25px 60px rgba(0, 122, 255, 0.3);
}
.catalog-block__img {
  position: relative;
  overflow: hidden;
}
.catalog-block__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.catalog-block:hover .catalog-block__img img {
  transform: scale(1.08);
}

.catalog-block__content {
  padding: 40px 30px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.catalog-block__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.3;
}
.catalog-block-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}
.catalog-block-list__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.catalog-block-list__item img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: brightness(0) invert(1) opacity(0.85);
}
.catalog-block-list__item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
.catalog-block-list__item p b {
  color: #24f2ff;
}

.catalog-block__footer {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(36, 242, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.catalog-block__price {
  font-size: 20px;
  font-weight: 400;
  color: #24f2ff;
}
.catalog-block__price b {
  font-size: 24px;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.catalog-block__link {
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}
.catalog-block__link:hover {
  box-shadow: 0 12px 40px rgba(0, 122, 255, 0.6);
  transform: translateY(-3px);
}
.catalog-block__link span svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

@media (max-width: 1200px) {
  .catalog-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .catalog-block__img img {
    height: 220px;
  }
  .catalog {
    padding: 60px 0;
    margin: 0 20px;
  }
  .catalog__title {
    font-size: 30px;
  }
  .catalog-blocks {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .catalog-block__content {
    padding: 32px 24px;
  }
  .catalog-block__price {
    font-size: 16px;
  }
  .catalog-block__price b {
    font-size: 22px;
  }
  .catalog-block__title {
    font-size: 18px;
  }
  .catalog-block-list__item p {
    font-size: 16px;
    line-height: 1.3;
  }
}

.recommendation {
  padding: 60px 0;
  background: linear-gradient(180deg, #0d0f14 0%, #14171f 50%, #0f1115 100%);
  position: relative;
  overflow: hidden;
  height: 80vh;
}
.recommendation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 122, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.recommendation__title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recommendation-slider {
  padding: 20px 0;
}

.recommendation-slider .swiper-slide {
  opacity: 0.7;
  transform: scale(0.94);
  transition: all 0.5s ease;
}

.recommendation-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.recommendation-slider .swiper-slide-prev,
.recommendation-slider .swiper-slide-next {
  opacity: 1;
  transform: scale(0.97);
}

.recommendation-slider::before,
.recommendation-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 180px;
  height: 80%;
  z-index: 10;
  pointer-events: none;
}
.recommendation-slider::before {
  left: 0;
  background: linear-gradient(to right, #0d0f14 0%, transparent 100%);
}
.recommendation-slider::after {
  right: 0;
  background: linear-gradient(to left, #0d0f14 0%, transparent 100%);
}

.recommendation-item {
  background: linear-gradient(180deg, #1c1e24 0%, #2a2d35 100%);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.recommendation-item:hover {
  transform: translateY(-16px);
  box-shadow: 0 25px 60px rgba(0, 122, 255, 0.4);
}

.recommendation-item__img {
  position: relative;
  overflow: hidden;
}
.recommendation-item__img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #1a1c22;
  transition: transform 0.6s;
}
.recommendation-item:hover .recommendation-item__img img {
  transform: scale(1.05);
}

.recommendation-item__content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recommendation-item__title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.recommendation-item__price {
  font-size: 20px;
  font-weight: 600;
  color: #24f2ff;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(36, 242, 255, 0.15);
  text-align: center;
}

.swiper-button {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .recommendation__title {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .swiper-button {
    width: 60px;
    height: 60px;
  }
  .swiper-button svg {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .recommendation {
    padding: 80px 0 20px;
  }
  .recommendation__title {
    padding: 20px 0 0;
    font-size: 30px;
  }
  .recommendation-slider {
    margin: 20px 0 0;
  }
  .recommendation-slider::before {
    background: none;
  }
  .recommendation-slider::after {
    background: none;
  }
  .recommendation-item__img img {
    height: 150px;
  }
  .recommendation-item__title {
    font-size: 20px;
  }
  .recommendation-item__price {
    font-size: 18px;
  }
  .recommendation-item__content {
    padding: 22px;
  }
  .recommendation {
    padding: 0;
    height: 100%;
  }
}

.info {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.info-blocks {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.info-text h2 {
  font-size: 20px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 60px;
  font-weight: normal;
}
.info-text b {
  font-size: 24px;
  color: #13b8ff;
  font-weight: 700;
}
.info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  margin-bottom: 70px;
}
.info-list__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  font-size: 18px;
  line-height: 1.3;
  color: #000;
}
.info-list__item__img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(126, 179, 255, 0.9);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-list__item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.info-block {
  width: 100%;
}
.info-block .main-first-block__link {
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
}
.info-block .main-first-block__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 122, 255, 0.6);
}
.info-block .main-first-block__link svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.info-map-container {
  position: absolute;
  top: 0;
  right: calc(-50vw + 50%);
  width: 50vw;
  height: 100%;
  overflow: visible;
}

.info-map-wrapper {
  width: 100%;
  padding-left: 40px;
}

.info-map__title-plashka {
  width: 50%;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  padding: 28px 50px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  transform: translateX(-100px);
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 2;
}
.info-map__title-plashka.in-view {
  transform: translateX(0);
  opacity: 1;
}
.info-map__title-plashka b {
  font-size: 24px;
  display: block;
}
.info-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: -10px 10px 8px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 840px;
  transform: translateX(120px);
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  position: relative;
}
.info-map.in-view {
  transform: translateX(0);
  opacity: 1;
}
.info-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1200px) {
  .info-blocks {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .info-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .info-map__title-plashka {
    position: relative;
    left: auto;
    transform: none;
    margin: 40px auto 30px;
    max-width: 90%;
  }
  .info-map__title-plashka.in-view {
    transform: none;
  }
}

@media (max-width: 768px) {
  .info {
    padding: 80px 0 100px;
  }
  .container-custom {
    padding: 0 20px;
  }
  .info-text p {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .info-list {
    gap: 28px;
    margin-bottom: 50px;
  }
  .info-list__item {
    font-size: 17px;
    gap: 20px;
  }
  .info-list__item__img {
    width: 48px;
    height: 48px;
  }
  .main-first-block__link {
    width: 100%;
    justify-content: center;
    padding: 20px;
    font-size: 17px;
  }

  .info-map-container {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
  }

  .info-map-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    left: 0;
    padding: 0 20px;
  }
  .info-map__title-plashka {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto 30px;
    padding: 20px 30px;
    font-size: 17px;
    text-align: center;
  }
  .info-map__title-plashka b {
    font-size: 22px;
  }
  .info-map {
    height: 500px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .info-map {
    height: 400px;
  }
  .info-map__title-plashka {
    padding: 18px 24px;
    font-size: 16px;
  }
  .info-map__title-plashka b {
    font-size: 20px;
  }
}

.moyka-section {
  padding: 120px 0;
  background: #fff;
  color:#000;
  position: relative;
  overflow: hidden;
}
.moyka-bg {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 10px;
  opacity: 0.15;
  pointer-events: none;
}
.moyka-bg img {
  width: 15vw;
  min-width: 300px;
}
.moyka-slider-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}
.moyka-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 100vh;
  margin-bottom: 30px;
}
.moyka-img {
  width: 50%;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.moyka-img img {
  width: 70vw;
  max-width: none;
  height: 100%;
  display: block;
  margin-left: -50vw;
  position: relative;
  left: 50%;
  object-fit: cover;
}
.moyka-content {
  width: 45%;
  display: flex;
  align-items: flex-start;
  z-index: 2;
}
.moyka-content .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.moyka-title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 20px;
  background: linear-gradient(120deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.moyka-text {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.moyka-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: left;
}
.moyka-btn-primary {
  width: 280px;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  padding: 18px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
}
.moyka-btn-primary:hover {
  box-shadow: 0 15px 40px rgba(0, 122, 255, 0.6);
  transform: translateY(-3px);
}
.moyka-btn-outline {
  text-align: center;
  width: 280px;
  background: transparent;
  border: 2px solid #24f2ff;
  color: #000;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
.moyka-btn-outline:hover {
  background: #24f2ff;
  color: #0f1115;
  box-shadow: 0 10px 30px rgba(36, 242, 255, 0.3);
}

.calc-section {
  background: linear-gradient(180deg, #0f1115 0%, #1c1e24 60%, #007aff 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.calc-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.calc-subtitle {
  font-size: 24px;
  text-align: center;
  margin-bottom: 60px;
}
.calc-tabs {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.calc-tab {
  width: 40%;
  text-align: center;
  background: transparent;
  border: 2px solid #24f2ff;
  color: #24f2ff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 16px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.calc-tab.active {
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
}
.calc-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.calc-content.active {
  display: block;
  opacity: 1;
}

.calc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
}
.calc-card {
  background: linear-gradient(180deg, #1c1e24 0%, #2a2d35 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(36, 242, 255, 0.15);
}
.calc-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 122, 255, 0.4);
}
.calc-card__header {
  padding: 0;
  position: relative;
}
.calc-card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border: none;
  box-shadow: none;
}
.calc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.calc-card:hover .calc-card__img img {
  transform: scale(1.05);
}
.calc-card__title-info {
  padding: 28px 32px 20px;
  text-align: center;
}
.calc-card__title {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(120deg, #24f2ff, #007aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 10px;
}
.calc-card__price {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.calc-card ul {
  list-style: none;
  padding: 0 32px;
  margin: 20px 0 32px;
  flex-grow: 1;
}
.calc-card li {
  font-size: 19px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}
.calc-card li::before {
  content: "✓";
  color: #24f2ff;
  font-weight: 900;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -2px;
}
.calc-card .moyka-btn-primary {
  margin: 0 32px 32px;
  width: calc(100% - 64px);
  background: linear-gradient(135deg, #007aff, #24f2ff);
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.5);
  font-size: 19px;
  padding: 20px;
  border-radius: 12px;
}

/* Адаптив */
@media (max-width: 991px) {
  .moyka-wrapper {
    flex-direction: column;
  }
  .moyka-img,
  .moyka-content {
    width: 100%;
    padding: 0 !important;
  }
  .moyka-img img {
    width: 100vw;
    margin-left: 0;
    left: 0;
    height: auto;
  }
  .calc-cards {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 0 20px;
  }
  .calc-card__header {
    flex-direction: column;
    text-align: center;
    padding: 36px 32px 0;
  }
  .calc-card__img {
    height: 280px;
  }
}
@media (max-width: 768px) {
  .moyka-btn-primary,
  .moyka-btn-outline {
    width: 100%;
  }
  .moyka-title {
    font-size: 20px;
    margin: 60px 0 20px;
  }
  .calc-section {
    padding: 20px 0 20px;
    width: 120%;
    right: 10%;
  }
  .calc-title {
    font-size: 24px;
    margin: 60px 10px 10px;
  }
  .calc-tab {
    width: 90%;
  }
  .calc-card__img {
    height: 200px;
  }
  .calc-card__title {
    font-size: 28px;
  }
  .calc-card__price {
    font-size: 26px;
  }
  .calc-card li {
    font-size: 17px;
  }
  .calc-card .moyka-btn-primary {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
  }
}

.franchise-pricing {
  padding: 40px 0;
  background: linear-gradient(180deg, #5199ff 0%, #1771f1 60%, #0260e8 100%);
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.franchise-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(0, 122, 255, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.franchise-pricing .container {
  position: relative;
  z-index: 2;
}

.franchise-pricing h3 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 50px;
  color: #fff;
}

.pricing-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.pricing-item {
  background: linear-gradient(180deg, #1c1e24 0%, #2a2d35 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.pricing-item:hover {
  transform: translateY(-20px);
  box-shadow: 0 25px 60px rgba(0, 122, 255, 0.35);
}

.pricing-label {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-value {
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pricing-value sup {
  font-size: 32px;
  opacity: 0.9;
}

.franchise-pricing .btn {
  display: block;
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 20px 50px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.franchise-pricing .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 122, 255, 0.6);
}

.franchise-pricing .btn:active {
  transform: translateY(-1px);
}

/* Адаптив */
@media (max-width: 991px) {
  .franchise-pricing h3 {
    font-size: 40px;
    margin-bottom: 60px;
  }
  .pricing-items {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .franchise-pricing {
    margin-top: 50px;
    padding: 40px 20px;
  }
  .franchise-pricing h3 {
    font-size: 26px;
    margin-bottom: 50px;
  }
  .pricing-item {
    padding: 40px 30px;
  }
  .pricing-label {
    font-size: 20px;
  }
  .pricing-value {
    font-size: 32px;
  }
  .franchise-pricing .btn {
    font-size: 17px;
    padding: 18px 30px;
  }
}

.pro-equipment {
  padding: 60px 0 120px;
  background: #fff;
}
.pro-equipment__title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pro-equipment .calc-subtitle {
  font-size: 24px;
  text-align: center;
  margin-bottom: 60px;
  color: #000;
}

.pro-equipment-card {
  background: linear-gradient(180deg, #1c1e24 0%, #2a2d35 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  display: grid;
  grid-template-columns: 30% 20% 50%;
  align-items: center;
  gap: 60px;
  padding: 60px 80px;
  margin-bottom: 60px;
}
.pro-equipment-card:last-child {
  margin-bottom: 0;
}
.pro-equipment-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 80px rgba(0, 122, 255, 0.45);
}

.pro-equipment-card__info h3 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #24f2ff;
  margin: 0 0 24px;
  line-height: 1.1;
}
.pro-equipment-card__price {
  font-size: 32px;
  color: #fff;
  margin-bottom: 40px;
}
.pro-equipment-card__price b {
  font-size: 48px;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pro-equipment-card__btn {
  display: inline-block;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  padding: 20px 50px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
  transition: all 0.3s;
}
.pro-equipment-card__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 122, 255, 0.6);
}

.pro-equipment-card__img img {
  /*     width: 100%;
    height: auto; */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
}

.pro-equipment-card__params-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #24f2ff;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 12px;
}
.pro-equipment-card__params-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #007aff, #24f2ff);
  border-radius: 2px;
}

.pro-equipment-card__params ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
.pro-equipment-card__params li {
  margin-bottom: 14px;
  padding-left: 4px;
}
.pro-equipment-card__params .bold {
  color: #24f2ff;
  font-weight: 700;
}

/* Адаптив */
@media (max-width: 1200px) {
  .pro-equipment-card {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 50px;
  }
  .pro-equipment-card__params {
    grid-column: 1/-1;
  }
}
@media (max-width: 991px) {
  .pro-equipment-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 40px;
  }
  .pro-equipment-card__img {
    max-width: 500px;
    margin: 0 auto 40px;
  }
  .pro-equipment-card__params-title {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .pro-equipment {
    padding: 80px 20px 20px;
  }
  .pro-equipment__title {
    font-size: 30px;
  }
  .pro-equipment-card {
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
  }
  .pro-equipment-card__info h3 {
    font-size: 36px;
  }
  .pro-equipment-card__price {
    font-size: 26px;
  }
  .pro-equipment-card__price b {
    font-size: 38px;
  }
  .pro-equipment-card__btn {
    padding: 18px 40px;
    font-size: 18px;
  }
  .pro-equipment-card__params-title {
    font-size: 28px;
  }
  .pro-equipment-card__params ul {
    font-size: 18px;
    text-align: left;
  }
}

.projects {
  padding: 120px 0;
  background: linear-gradient(180deg, #0f1115 0%, #1c1e24 60%, #007aff 100%);
  position: relative;
  overflow: hidden;
}
.projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(0, 122, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.projects__title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.projects__subtitle {
  max-width: 1000px;
  margin: 0 auto 100px;
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.project-card {
  background: linear-gradient(180deg, #1c1e24 0%, #2a2d35 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.project-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 80px rgba(0, 122, 255, 0.45);
}

.project-image {
  position: relative;
  height: 260px;
  background: #2a2d35;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
}
.project-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

.project-content {
  padding: 40px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.project-content h3 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #24f2ff;
  margin: 0 0 32px;
}

.project-info {
  margin-bottom: auto;
}
.project-info-item {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(36, 242, 255, 0.15);
}
.project-info-item:last-child {
  border-bottom: none;
}
.info-value {
  font-weight: 600;
  color: #24f2ff;
}

.project-card .btn {
  margin-top: 32px;
  width: 100%;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
  transition: all 0.3s;
}
.project-card .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 122, 255, 0.6);
}

/* Адаптив */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .projects {
    padding: 100px 20px 140px;
  }
  .projects__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .projects__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .projects__subtitle {
    font-size: 18px;
    margin-bottom: 60px;
  }
  .project-content {
    padding: 32px 24px;
  }
  .project-content h3 {
    font-size: 28px;
  }
  .project-image {
    height: 200px;
    font-size: 90px;
  }
}

.steps-section {
  padding: 120px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.steps-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(0, 122, 255, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.steps-section .hero-bg {
  position: absolute;
  z-index: 0;
  top: 20%;
  right: 0;
  bottom: 0;
  opacity: 0.5;
}
.steps-section .hero-bg img {
  width: 17vw;
}

.steps-section .section-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.steps-section .section-subtitle {
  max-width: 1000px;
  margin: 0 auto 100px;
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  color: #000;
}

.steps-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.accordion-item {
  background: linear-gradient(180deg, #1c1e24 0%, #2a2d35 100%);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}
.accordion-item:hover {
  box-shadow: 0 20px 50px rgba(0, 122, 255, 0.25);
}
.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-header {
  padding: 40px 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}
.accordion-header:hover {
  background: rgba(36, 242, 255, 0.03);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
}

.accordion-header h3 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  flex: 1;
}

.accordion-header::after {
  content: "+";
  font-size: 40px;
  font-weight: 300;
  color: #24f2ff;
  position: absolute;
  right: 48px;
  transition: transform 0.4s ease;
}
.accordion-item.active .accordion-header::after {
  content: "−";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.19, 1, 0.22, 1), padding 0.5s ease;
  padding: 0 48px;
  background: rgba(28, 30, 36, 0.6);
}
.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 40px 48px 48px;
}

.accordion-content p {
  font-size: 20px;
  line-height: 1.7;
  color: #fff;
  margin: 0;
}

/* Адаптив */
@media (max-width: 991px) {
  .steps-section {
    padding: 100px 20px 20px;
  }
  .steps-section .section-title {
    font-size: 40px;
  }
  .accordion-header {
    padding: 32px 32px;
    gap: 24px;
  }
  .step-number {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
  .accordion-header h3 {
    font-size: 28px;
  }
  .accordion-header::after {
    right: 32px;
  }
  .accordion-content {
    padding: 0 32px;
  }
  .accordion-item.active .accordion-content {
    padding: 32px 32px 40px;
  }
}
@media (max-width: 768px) {
  .steps-section .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .steps-section .section-subtitle {
    font-size: 18px;
    margin-bottom: 60px;
  }
  .accordion-header {
    flex-direction: row !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 32px 24px !important;
  }

  .step-number {
    align-self: center;
    width: 40px !important;
    height: 40px !important;
    font-size: 22px !important;
    flex-shrink: 0;
  }

  .accordion-header h3 {
    font-size: 18px !important;
    margin: 0;
    flex: 1;
  }

  .accordion-header::after {
    right: 24px !important;
  }

  .accordion-content p {
    font-size: 18px;
  }
}

.reviews-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #0f1115 0%, #1c1e24 60%, #007aff 100%);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(0, 122, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.reviews-header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}
.reviews-header .section-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reviews-header .section-subtitle {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.6;
  color: #fff;
}

.reviews-slider-outer {
  position: relative;
}

.reviews-slider-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px 0 20px;
}

.reviews-slider .swiper {
  overflow: visible;
}
.reviews-slider .swiper-wrapper {
  align-items: center;
}
.reviews-slider .swiper-slide {
  height: 600px;
  display: flex;
}

.review-card {
  background: linear-gradient(180deg, #1c1e24 0%, #2a2d35 100%);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 80px rgba(0, 122, 255, 0.45);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.review-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}
.review-author h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.review-author p {
  font-size: 16px;
  color: #24f2ff;
  margin: 0;
}
.review-stars {
  font-size: 28px;
  color: #ffd700;
  margin-bottom: 24px;
  letter-spacing: 4px;
}
.review-text {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  margin: 0 0 32px;
  flex-grow: 1;
  position: relative;
}
.review-text::before,
.review-text::after {
  content: '"';
  font-size: 60px;
  color: #24f2ff;
  opacity: 0.2;
}
.review-text::before {
  float: left;
  margin-right: 8px;
  margin-top: -10px;
}
.review-text::after {
  float: right;
  margin-left: 8px;
  margin-bottom: -10px;
}
.review-config {
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  margin-top: auto;
}
.review-config .strong-text {
  color: #24f2ff;
  font-weight: 700;
}

.reviews-slider .swiper-button {
  position: absolute;
  top: 50%;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 20;
  margin-top: -35px;
}
.reviews-slider .swiper-button svg {
  width: 32px;
  height: 32px;
  fill: #24f2ff;
}
.reviews-slider .swiper-button-prev {
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
}
.reviews-slider .swiper-button-next {
  right: 20px;
  transform: translateY(-50%);
}

@media (max-width: 1600px) {
  .reviews-slider-inner {
    padding: 0 80px;
  }
}
@media (max-width: 1440px) {
  .reviews-slider-inner {
    padding: 0 60px;
  }
}
@media (max-width: 1200px) {
  .reviews-slider-inner {
    padding: 0 40px;
  }
}
@media (max-width: 991px) {
  .reviews-slider .swiper-button {
    width: 60px;
    height: 60px;
  }
  .reviews-slider .swiper-button svg {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .reviews-header .section-title {
    font-size: 30px;
  }
  .reviews-slider-inner {
    padding: 0 20px;
  }
  .reviews-slider .swiper-button {
    width: 56px;
    height: 56px;
  }
  .reviews-slider .swiper-button svg {
    width: 24px;
    height: 24px;
  }
}

.faq-section {
  padding: 120px 0;
  background: #0f1115;
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 122, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.faq-section .section-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-section .section-subtitle {
  max-width: 1000px;
  margin: 0 auto 100px;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: linear-gradient(180deg, #1c1e24 0%, #2a2d35 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}
.faq-item:hover {
  box-shadow: 0 20px 50px rgba(0, 122, 255, 0.25);
}

.faq-question {
  padding: 36px 40px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.faq-question:hover {
  background: rgba(36, 242, 255, 0.03);
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 60px;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  border-radius: 3px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.faq-item.active .faq-question::before {
  opacity: 1;
}

.faq-question span:first-child {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  padding-left: 20px;
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  width: 44px;
  height: 44px;
  background: rgba(36, 242, 255, 0.15);
  color: #24f2ff;
  font-size: 28px;
  font-weight: 300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.19, 1, 0.22, 1), padding 0.6s ease;
  padding: 0 40px;
}
.faq-item.active .faq-answer {
  max-height: 900px;
  padding: 0 40px 48px 40px;
}

.faq-answer p,
.faq-answer li {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
}
.faq-answer ul,
.faq-answer ol {
  margin: 20px 0;
  padding-left: 30px;
}
.faq-answer li {
  margin-bottom: 12px;
}
.faq-answer strong,
.faq-answer .strong-text {
  color: #24f2ff;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .faq-grid {
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .faq-section .section-title {
    font-size: 24px;
  }
  .faq-section {
    padding: 80px 20px 120px;
  }
  .faq-question {
    padding: 32px 24px;
  }
  .faq-question span:first-child {
    font-size: 21px;
  }
  .faq-answer {
    padding: 0 24px;
  }
  .faq-item {
    width: 100%;
  }
  .faq-item.active .faq-answer {
    padding: 32px 24px 40px;
  }
  .faq-grid {
    width: 100%;
    position: relative;
    left: 0%;
  }
}

.final-cta-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #0f1115 0%, #1a1c24 50%, #007aff 100%);
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% -30%,
    rgba(0, 122, 255, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.final-cta-form {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 100px;
  background: linear-gradient(180deg, #1c1e24 0%, #2a2d35 100%);
  border-radius: 32px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  position: relative;
  text-align: center;
}
.final-cta-form::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 4px;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.final-cta-form h2 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 24px;
  background: linear-gradient(90deg, #007aff, #24f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.final-cta-form > p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}

.final-form {
  /*  margin-top: 50px;
     display: grid;
    grid-template-columns: 1fr 1fr; */
  gap: 24px;
}
.final-form .form-group {
  grid-column: span 1;
}
.final-form .form-group.full {
  grid-column: 1 / -1;
}

.final-form input,
.final-form select {
  width: 100%;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(36, 242, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s;
}
.final-form input::placeholder,
.final-form select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.final-form input:focus,
.final-form select:focus {
  outline: none;
  border-color: #24f2ff;
  box-shadow: 0 0 0 4px rgba(36, 242, 255, 0.2);
}

.checkbox-group {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: #24f2ff;
  flex-shrink: 0;
}

.final-form .btn {
  grid-column: 1 / -1;
  width: 100%;
  background: linear-gradient(135deg, #007aff, #24f2ff);
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  padding: 24px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 122, 255, 0.5);
  transition: all 0.4s;
  cursor: pointer;
}
.final-form .btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 122, 255, 0.7);
}

.final-cta-form > p:last-child {
  margin-top: 40px;
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .final-cta-form {
    padding: 70px 60px;
  }
  .final-cta-form h2 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .final-form {
    grid-template-columns: 1fr;
  }
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .final-cta-section {
    padding: 100px 20px;
  }
  .final-cta-form {
    padding: 50px 30px;
    border-radius: 24px;
  }
  .final-cta-form h2 {
    font-size: 32px;
  }
  .final-cta-form > p {
    font-size: 20px;
  }
  .final-form input,
  .final-form select,
  .final-form .btn {
    padding: 18px;
    font-size: 17px;
  }
}

.multi-window-show {
  cursor: pointer;
}

.info-map img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.final-form .header-phone {
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 30px;
}
@media (max-width: 420px) {
  .final-form .header-phone {
    font-size: 20px;
  }
  .pro-equipment__title {
    font-size: 20px;
  }
}

/* BLOG */

.blog-cont {
  padding: 160px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.container-blog {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
.blog-cont a {
  text-decoration: none !important;
  color: inherit;
}

.blog__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}
.blog__title-wrap {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog__main-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s ease-out 0.4s forwards;
}
.blog__subtitle {
  font-size: 26px;
  line-height: 1.5;
  color: #1e2a38;
  margin: 20px 0 0;
  max-width: 680px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.4s ease-out 0.8s forwards;
}
.blog__main-btn {
  margin-top: 32px;
  padding: 18px 44px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff !important;
  /*         background:linear-gradient(135deg,#2c5f7a,#46728a); */
  background-color: #1e88e5;

  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(44, 95, 122, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s ease-out 1.1s forwards;
  transition: all 0.4s;
}
.blog__main-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(44, 95, 122, 0.5);
}

.blog__card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border: 4px solid transparent;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(
        rgba(255, 255, 255, 0.88),
        rgba(255, 255, 255, 0.88)
      )
      padding-box,
    linear-gradient(135deg, #2c5f7a, #46728a, #1e88e5, #0aff23) border-box;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.45s;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out forwards;
}
.blog__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}
.blog__card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}
.blog__card-content {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog__card-title {
  font-size: 18px;
  font-weight: 800;
  color: #004c80;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog__card-text {
  font-size: 17px;
  line-height: 1.6;
  color: #1e2a38;
  flex-grow: 1;
  margin-bottom: 20px;
}
.blog__card-btn {
  margin-top: auto;
  padding: 16px 20px;
  background-color: #ffc107;
  /*   background:linear-gradient(135deg,#ff8c38,#e63946,#a0522d,#8b4513); */
  color: #000000;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.blog__card:hover .blog__card-btn {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Анимации появления */
.blog__header > .blog__card:nth-of-type(1) {
  animation-delay: 0.9s;
}
.blog__header > .blog__card:nth-of-type(2) {
  animation-delay: 1.1s;
}
.blog__grid .blog__card:nth-child(1) {
  animation-delay: 1.3s;
}
.blog__grid .blog__card:nth-child(2) {
  animation-delay: 1.5s;
}
.blog__grid .blog__card:nth-child(3) {
  animation-delay: 1.7s;
}
.blog__grid .blog__card:nth-child(4) {
  animation-delay: 1.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-floating-img {
  position: absolute;
  top: 50%;
  right: -220px;
  transform: translateY(-50%);
  width: 820px;
  height: 100%;
  background: url("") center/cover no-repeat;
  border-radius: 32px;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: all 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-cont.animated .blog-floating-img {
  right: 20px;
  opacity: 0.15;
}

/* Адаптив */
@media (max-width: 1200px) {
  .container-blog {
    padding: 0 40px;
  }
  .blog__header {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .blog__title-wrap {
    grid-column: 1/-1;
    text-align: center;
    align-items: center;
  }
  .blog__subtitle {
    font-size: 19px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .container-blog {
    padding: 0 30px;
  }
  .blog__header {
    grid-template-columns: 1fr;
  }
  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .container-blog {
    padding: 0 20px;
  }
  .blog-cont {
    padding: 90px 0;
  }
  .blog__main-title {
    font-size: 36px;
  }
  .blog__subtitle {
    font-size: 17px;
    margin: 16px 0 0;
  }
  .blog__main-btn {
    margin-top: 28px;
    padding: 16px 36px;
    font-size: 17px;
  }
  .blog__card-img {
    height: 160px;
  }
  .blog__card-content {
    padding: 24px 20px;
  }
  .blog__card-title {
    font-size: 20px;
  }
  .blog__card-text {
    font-size: 16.5px;
  }
}
@media (max-width: 540px) {
  .container-blog {
    padding: 0 15px;
  }
  .blog__grid {
    grid-template-columns: 1fr;
  }
  .blog__card-img {
    height: 200px;
  }
  .blog__main-btn {
    min-width: auto;
    width: 100%;
    max-width: 320px;
  }
  .blog__subtitle {
    font-size: 16px;
  }
}

.articles-hero {
  padding: 160px 60px;

  background-image: url("/userfiles/images/g2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  /*   background:linear-gradient(135deg,rgba(11,30,45,.96),rgba(26,51,68,.93) 30%,rgba(47,80,112,.86) 65%,rgba(160,77,43,.82)); */

  position: relative;
  overflow: hidden;
}
.articles-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 30, 60, 0.9),
    rgba(120, 80, 50, 0.15)
  );
  pointer-events: none;
}
.articles-hero .container-articles {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.articles__main-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffbb66, #ffcc88, #ffaa44, #ff9933);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s ease-out 0.4s forwards;
}
.articles__subtitle {
  font-size: 26px;
  line-height: 1.5;
  color: #000000;
  max-width: 680px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.4s ease-out 0.8s forwards;
  margin: 24px 0;
}
.articles__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.articles__title-wrap {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 50px;
}
.articles-cont {
  padding: 160px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.container-articles {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}
.articles__card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  flex-shrink: 0;
}
.articles__card-content {
  padding: 32px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.articles__card-title {
  font-size: 20px;
  font-weight: 800;
  color: #004c80;
  line-height: 1.3;
  margin-bottom: 14px;
}
.articles__card-text {
  font-size: 17px;
  line-height: 1.6;
  color: #1e2a38;
  flex-grow: 1;
  margin-bottom: 20px;
}
.articles__card-btn {
  margin-top: auto;
  padding: 16px 20px;
  background: linear-gradient(135deg, #ff8c38, #e63946, #a0522d, #8b4513);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.articles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.articles__header > .articles__card:nth-of-type(1) {
  animation-delay: 1s;
}
.articles__header > .articles__card:nth-of-type(2) {
  animation-delay: 1.2s;
}
.articles__grid .articles__card:nth-child(1) {
  animation-delay: 1.4s;
}
.articles__grid .articles__card:nth-child(2) {
  animation-delay: 1.6s;
}
.articles__grid .articles__card:nth-child(3) {
  animation-delay: 1.8s;
}
.articles__grid .articles__card:nth-child(4) {
  animation-delay: 2s;
}
.articles__grid .articles__card:nth-child(5) {
  animation-delay: 2.2s;
}
.articles__grid .articles__card:nth-child(6) {
  animation-delay: 2.4s;
}
.articles__grid .articles__card:nth-child(7) {
  animation-delay: 2.6s;
}
.articles__grid .articles__card:nth-child(8) {
  animation-delay: 2.8s;
}

@media (max-width: 1200px) {
  .articles-hero {
    padding: 140px 40px;
  }
  .articles__header {
    grid-template-columns: 1fr 1fr;
  }
  .articles__title-wrap {
    grid-column: 1/-1;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .articles-hero {
    padding: 120px 0;
  }
  .articles__header {
    grid-template-columns: 1fr;
  }
  .articles__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .articles-hero {
    padding: 100px 0;
  }
  .articles__main-title {
    font-size: 42px;
  }
  .articles__subtitle {
    font-size: 22px;
  }
  .articles__card-img {
    height: 200px;
  }
  .articles-cont {
    padding: 100px 0;
  }
}
@media (max-width: 540px) {
  .articles-hero {
    padding: 80px 0;
  }
  .articles__main-title {
    font-size: 36px;
  }
  .articles__grid {
    grid-template-columns: 1fr;
  }
}

/* BLOG */

.blog-cont {
  padding: 160px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.container-blog {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
.blog-cont a {
  text-decoration: none !important;
  color: inherit;
}

.blog__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}
.blog__title-wrap {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog__main-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s ease-out 0.4s forwards;
}
.blog__subtitle {
  font-size: 26px;
  line-height: 1.5;
  color: #1e2a38;
  margin: 20px 0 0;
  max-width: 680px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.4s ease-out 0.8s forwards;
}
.blog__main-btn {
  margin-top: 32px;
  padding: 18px 44px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff !important;
  /*         background:linear-gradient(135deg,#2c5f7a,#46728a); */
  background-color: #1e88e5;

  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(44, 95, 122, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s ease-out 1.1s forwards;
  transition: all 0.4s;
}
.blog__main-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(44, 95, 122, 0.5);
}

.blog__card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border: 4px solid transparent;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(
        rgba(255, 255, 255, 0.88),
        rgba(255, 255, 255, 0.88)
      )
      padding-box,
    linear-gradient(135deg, #2c5f7a, #46728a, #1e88e5, #ffc107) border-box;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.45s;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out forwards;
}
.blog__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}
.blog__card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}
.blog__card-content {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog__card-title {
  font-size: 18px;
  font-weight: 800;
  color: #004c80;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog__card-text {
  font-size: 17px;
  line-height: 1.6;
  color: #1e2a38;
  flex-grow: 1;
  margin-bottom: 20px;
}
.blog__card-btn {
  margin-top: auto;
  padding: 16px 20px;
  background-color: #ffc107;
  /*   background:linear-gradient(135deg,#ff8c38,#e63946,#a0522d,#8b4513); */
  color: #000000;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.blog__card:hover .blog__card-btn {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Анимации появления */
.blog__header > .blog__card:nth-of-type(1) {
  animation-delay: 0.9s;
}
.blog__header > .blog__card:nth-of-type(2) {
  animation-delay: 1.1s;
}
.blog__grid .blog__card:nth-child(1) {
  animation-delay: 1.3s;
}
.blog__grid .blog__card:nth-child(2) {
  animation-delay: 1.5s;
}
.blog__grid .blog__card:nth-child(3) {
  animation-delay: 1.7s;
}
.blog__grid .blog__card:nth-child(4) {
  animation-delay: 1.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-floating-img {
  position: absolute;
  top: 50%;
  right: -220px;
  transform: translateY(-50%);
  width: 820px;
  height: 100%;
  background: url("") center/cover no-repeat;
  border-radius: 32px;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: all 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-cont.animated .blog-floating-img {
  right: 20px;
  opacity: 0.15;
}

/* Адаптив */
@media (max-width: 1200px) {
  .container-blog {
    padding: 0 40px;
  }
  .blog__header {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .blog__title-wrap {
    grid-column: 1/-1;
    text-align: center;
    align-items: center;
  }
  .blog__subtitle {
    font-size: 19px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .container-blog {
    padding: 0 30px;
  }
  .blog__header {
    grid-template-columns: 1fr;
  }
  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .container-blog {
    padding: 0 20px;
  }
  .blog-cont {
    padding: 90px 0;
  }
  .blog__main-title {
    font-size: 36px;
  }
  .blog__subtitle {
    font-size: 17px;
    margin: 16px 0 0;
  }
  .blog__main-btn {
    margin-top: 28px;
    padding: 16px 36px;
    font-size: 17px;
  }
  .blog__card-img {
    height: 160px;
  }
  .blog__card-content {
    padding: 24px 20px;
  }
  .blog__card-title {
    font-size: 20px;
  }
  .blog__card-text {
    font-size: 16.5px;
  }
}
@media (max-width: 540px) {
  .container-blog {
    padding: 0 15px;
  }
  .blog__grid {
    grid-template-columns: 1fr;
  }
  .blog__card-img {
    height: 200px;
  }
  .blog__main-btn {
    min-width: auto;
    width: 100%;
    max-width: 320px;
  }
  .blog__subtitle {
    font-size: 16px;
  }
}

.articles-hero {
  padding: 160px 60px;

  background-image: url("/userfiles/images/g2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  /*   background:linear-gradient(135deg,rgba(11,30,45,.96),rgba(26,51,68,.93) 30%,rgba(47,80,112,.86) 65%,rgba(160,77,43,.82)); */

  position: relative;
  overflow: hidden;
}
.articles-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0f1115 0%, #1c1e24 60%, #007aff 100%);
  pointer-events: none;
}
.articles-hero .container-articles {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.articles__main-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffbb66, #ffcc88, #ffaa44, #ff9933);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s ease-out 0.4s forwards;
}
.articles__subtitle {
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
  color: #ffffff;
  max-width: 680px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.4s ease-out 0.8s forwards;
  margin: 24px 0;
}

section .subtitle-main {
  color: #000000;
}

.articles__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.articles__title-wrap {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 50px;
}
.articles-cont {
  padding: 160px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.container-articles {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}
.articles__card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  flex-shrink: 0;
}
.articles__card-content {
  padding: 32px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.articles__card-title {
  font-size: 20px;
  font-weight: 800;
  color: #004c80;
  line-height: 1.3;
  margin-bottom: 14px;
}
.articles__card-text {
  font-size: 17px;
  line-height: 1.6;
  color: #1e2a38;
  flex-grow: 1;
  margin-bottom: 20px;
}
.articles__card-btn {
  margin-top: auto;
  padding: 16px 20px;
  background: linear-gradient(135deg, #ff8c38, #e63946, #a0522d, #8b4513);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.articles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.articles__header > .articles__card:nth-of-type(1) {
  animation-delay: 1s;
}
.articles__header > .articles__card:nth-of-type(2) {
  animation-delay: 1.2s;
}
.articles__grid .articles__card:nth-child(1) {
  animation-delay: 1.4s;
}
.articles__grid .articles__card:nth-child(2) {
  animation-delay: 1.6s;
}
.articles__grid .articles__card:nth-child(3) {
  animation-delay: 1.8s;
}
.articles__grid .articles__card:nth-child(4) {
  animation-delay: 2s;
}
.articles__grid .articles__card:nth-child(5) {
  animation-delay: 2.2s;
}
.articles__grid .articles__card:nth-child(6) {
  animation-delay: 2.4s;
}
.articles__grid .articles__card:nth-child(7) {
  animation-delay: 2.6s;
}
.articles__grid .articles__card:nth-child(8) {
  animation-delay: 2.8s;
}

@media (max-width: 1200px) {
  .articles-hero {
    padding: 140px 40px;
  }
  .articles__header {
    grid-template-columns: 1fr 1fr;
  }
  .articles__title-wrap {
    grid-column: 1/-1;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .articles-hero {
    padding: 120px 0;
  }
  .articles__header {
    grid-template-columns: 1fr;
  }
  .articles__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .articles-hero {
    padding: 100px 0;
  }
  .articles__main-title {
    font-size: 42px;
  }
  .articles__subtitle {
    font-size: 22px;
  }
  .articles__card-img {
    height: 200px;
  }
  .articles-cont {
    padding: 100px 0;
  }
}
@media (max-width: 540px) {
  .articles-hero {
    padding: 80px 0;
  }
  .articles__main-title {
    font-size: 36px;
  }
  .articles__grid {
    grid-template-columns: 1fr;
  }
}

.prices-section {
  padding: 80px 0 120px;
  background: #0F1115;
  position: relative;
  overflow: hidden;
}

.prices-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #007AFF, #24F2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prices-subtitle {
  max-width: 1000px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
  opacity: 0.9;
}

.prices-table-wrapper {
  max-width: 1200px;
  margin: 0 auto 60px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,122,255,0.15);
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(180deg, #1C1E24 0%, #2A2D35 100%);
}

.prices-table th,
.prices-table td {
  padding: 28px 40px;
  text-align: left;
  border-bottom: 1px solid rgba(36,242,255,0.12);
  font-size: 18px;
  color: #fff;
}

.prices-table th {
  background: linear-gradient(135deg, #007AFF, #24F2FF);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prices-table .prices-service {
  width: 70%;
}

.prices-table .prices-price {
  width: 30%;
  text-align: right;
  font-weight: 800;
  font-size: 22px;
  color: #fff !important;         
}

.prices-table tbody td:last-child {
  text-align: right;                   
  font-weight: 900;
  font-size: 23px;
  color: #24F2FF;
}

.prices-table tr:hover {
  background: rgba(36,242,255,0.08);
}

.prices-table tr:last-child td {
  border-bottom: none;
}

.prices-note {
  text-align: center;
  font-size: 18px;
  color: #aaa;
}

.prices-note p {
  margin-bottom: 32px;
}

@media (max-width: 992px) {
  .prices-table thead { display: none; }

  .prices-table,
  .prices-table tbody,
  .prices-table tr,
  .prices-table td {
    display: block;
  }

  .prices-table tr {
    margin-bottom: 24px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #1C1E24 0%, #2A2D35 100%);
    box-shadow: 0 12px 40px rgba(0,122,255,0.15);
  }

  .prices-table td {
    padding: 24px 32px;
    border: none;
    font-size: 18px;
  }

  .prices-table td:first-child {
    background: linear-gradient(135deg, #007AFF, #24F2FF);
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
  }

  .prices-table td:last-child {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #24F2FF;
    padding-top: 12px;
  }
}

@media (max-width: 576px) {
  .prices-title { font-size: 36px; }
  .prices-subtitle { font-size: 18px; }
  .prices-table td { padding: 20px 24px; font-size: 17px; }
  .prices-table td:first-child { font-size: 18px; }
  .prices-table td:last-child { font-size: 22px; }
}