
  :root {
    --max-width: 1440px;
    --yellow: #FFD700;
    --yellow-gradient-start: #FFEB3B;
    --yellow-gradient-end: #FFC107;
    --blue: #1E88E5;
    --border-blue: #42A5F5;
    --border-light: rgba(66, 165, 245, 0.2);
    --shadow-light: rgba(66, 165, 245, 0.15);
    --text-dark: #212121;
    --text-light: #555555;
    --white: #FFFFFF;
    --header-bg: rgba(255, 255, 255, 0.92);
    --header-border: rgba(66, 165, 245, 0.15);
  }

html {
  scroll-behavior: smooth;
}

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
  }
  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
  }
  .top-bar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--header-border);
    padding: 12px 0;
    font-size: 15px;
  }
  .top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .top-bar__left {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .logo {
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
  }
  .logo span {
    color: var(--blue);
  }
  .top-bar__contacts {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--text-light);
  }
  .top-bar__address,
  .top-bar__phone {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .top-bar__phone a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
  }
  .social-icons a {
    color: var(--text-light);
    font-size: 18px;
    transition: color 0.3s;
  }
  .social-icons a:hover {
    color: var(--blue);
  }
  .top-bar__buttons {
    display: flex;
    gap: 16px;
  }
  .btn-outline {
    padding: 10px 24px;
    border: 2px solid var(--blue);
    border-radius: 8px;
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-outline:hover {
    background: var(--blue);
    color: #fff;
  }
  .btn-yellow {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--yellow-gradient-start), var(--yellow-gradient-end));
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s;
  }
  .btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
  }
  .main-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    box-shadow: 0 4px 20px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .main-nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .burger-wrapper {
    display: none;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 28px;
    color: var(--text-dark);
  }
  .burger-icon {
    font-size: 28px;
  }
  .burger-text {
    font-size: 16px;
    font-weight: 600;
  }
  .mobile-menu-close {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .main-nav__list {
    display: flex;
    justify-content: center;
    gap: 48px;
    list-style: none;
    flex-wrap: wrap;
    width: 100%;
  }
  .main-nav__link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }
  .main-nav__link:hover {
    color: var(--blue);
  }
  .main-nav__link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--yellow);
    transition: width 0.3s;
  }
  .main-nav__link:hover::after {
    width: 100%;
  }

  /* ===== СЛАЙДЕР ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 80px 0 80px;
  }
  .hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  .hero-slide.active {
    opacity: 1;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,0.95) 10%,
      rgba(255,255,255,0) 25%,
      rgba(255,255,255,0) 75%,
      rgba(255,255,255,0.95) 90%,
      rgba(255,255,255,1) 100%);
    pointer-events: none;
    z-index: 1;
    top: -100px;
  }
  .hero__content {
    position: relative;
    z-index: 2;
    display: none;
  }
  .hero__content.active {
    display: block;
  }
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  /* Топ-ряд: 70%/30% */
  .hero__top-row {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 10px;
    align-items: stretch;
  }
  .hero__left {
    background: rgba(227, 242, 253, 0.7);
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(66, 165, 245, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .hero__right {
    height: 100%;
  }
  .main__sale-block {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(227, 242, 253, 0.7);
    border-radius: 32px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(66,165,245,0.25);
    border: 1px solid rgba(66,165,245,0.3);
    backdrop-filter: blur(8px);
  }

  .hero__title {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.05;
    color: var(--text-dark);
    letter-spacing: -1px;
  }
  .hero__title span {
    color: var(--blue);
  }
  .hero__subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
  }

  .main__badge {
    background: var(--yellow);
    color: #000;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 1px;
  }
  .main__sale-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 16px;
  }
  .main__sale-desc {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
  }
  .main__sale-btn {
    background: linear-gradient(135deg, var(--yellow-gradient-start), var(--yellow-gradient-end));
    color: #000;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 24px 48px;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(255,193,7,0.4);
    transition: all 0.3s ease;
    display: inline-block;
  }
  .main__sale-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255,193,7,0.6);
  }

  /* НОВЫЙ СТИЛЬ ПРЕИМУЩЕСТВ */
  .main__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    margin-top: 30px;
  }
  .main__list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(66, 165, 245, 0.1);
    transition: all 0.3s ease;
  }
  .main__list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(66, 165, 245, 0.2);
  }
  .main__list li i {
    font-size: 32px;
    color: var(--yellow);
    flex-shrink: 0;
  }

  /* Стрелки */
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--blue);
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
  }
  .slider-arrow:hover {
    background: var(--blue);
    color: #fff;
  }
  .slider-prev {
    left: 30px;
  }
  .slider-next {
    right: 30px;
  }

  /* Превью картинками */
  .slider-thumbs {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 3;
    background: rgba(255,255,255,0.7);
    padding: 12px 20px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
  }
  .slider-thumb {
    width: 300px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    border: 3px solid transparent;
  }
  .slider-thumb.active {
    opacity: 1;
    border: 3px solid var(--yellow);
    transform: scale(1.05);
  }

  /* Анимации появления */
  .hero__left > *,
  .main__sale-block > *,
  .main__list {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .hero__left > *:nth-child(1) { transition-delay: 0.3s; }
  .hero__left > *:nth-child(2) { transition-delay: 0.5s; }
  .main__list { transition-delay: 0.7s; }
  .main__list li:nth-child(1) { transition-delay: 0.8s; }
  .main__list li:nth-child(2) { transition-delay: 0.9s; }
  .main__list li:nth-child(3) { transition-delay: 1.0s; }
  .main__list li:nth-child(4) { transition-delay: 1.1s; }
  .hero.animate .hero__left > *, 
  .hero.animate .main__sale-block > *, 
  .hero.animate .main__list,
  .hero.animate .main__list li {
    opacity: 1;
    transform: translateY(0);
  }
  .hero.animate .main__sale-block { transition-delay: 0.4s; }
  .hero.animate .main__badge { transition-delay: 0.6s; }
  .hero.animate .main__sale-title { transition-delay: 0.8s; }
  .hero.animate .main__sale-desc { transition-delay: 1.0s; }
  .hero.animate .main__sale-btn { transition-delay: 1.2s; }

  /* === МОБИЛЬНАЯ АДАПТАЦИЯ === */
  @media (max-width: 1200px) {
    .hero__top-row {
      gap: 30px;
    }
    .main__list {
      gap: 16px;
    }
    .slider-thumbs {
      gap: 12px;
      padding: 10px 16px;
    }
    .slider-thumb {
      width: 100px;
      height: 70px;
    }
  }
  @media (max-width: 992px) {
    .top-bar__inner {
      justify-content: center;
      flex-direction: column;
      gap: 16px;
    }
    .top-bar__left,
    .top-bar__contacts {
      gap: 20px;
    }
    .top-bar__buttons {
      order: -1;
    }
    .hero__top-row {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    .hero__right {
      height: auto;
    }
    .hero__title {
      font-size: 60px;
    }
    .hero__subtitle {
      font-size: 24px;
    }
    .hero__left {
      padding: 40px;
    }
    .main__list {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 768px) {
    .top-bar__contacts {
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .burger-wrapper {
      display: flex;
    }
    .main-nav__container {
      padding: 0 20px;
    }
    .main-nav__list {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: var(--header-bg);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 100px 40px;
      transition: left 0.4s ease;
      gap: 32px;
      z-index: 1000;
      overflow-y: auto;
    }
    .main-nav__list.active {
      left: 0;
    }
    .main-nav__link {
      font-size: 24px;
    }
    .hero {
      padding: 60px 0 20px;
    }
    .hero__title {
      font-size: 28px;
    }
    .hero__subtitle {
      font-size: 20px;
    }
    .hero__left {
      padding: 32px;
    }
	 .main__sale-title {
    font-size: 24px;
    }
    .main__sale-block {
      padding: 40px 32px;
    }
    .main__list li {
      padding: 14px 16px;
      font-size: 18px;
    }
    .main__list li i {
      font-size: 28px;
    }
    .slider-arrow {
      width: 50px;
      height: 50px;
      font-size: 26px;
    }
    .slider-prev { left: 15px; }
    .slider-next { right: 15px; }
    .slider-thumbs {
      display: none;
    }
    .slider-thumb {
      width: 80px;
      height: 60px;
    }
  }





#banners_main {
    padding: 80px 0;
    background: #FFFFFF;
  }
  .banners_main__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
  .s-title {
    font-size: 52px;
    font-weight: 900;
    color: #212121;
    margin: 0;
  }
  .banners_main__slider {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(66, 165, 245, 0.15);
  }
  .banners_main__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
  }
  .banners_main__item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  .banners_main__item:hover img {
    transform: scale(1.05);
  }
  .banners_main__item-filter {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
  }
  .banners_main__nav {
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(66, 165, 245, 0.2);
  }
  .swiper-button-prev-main,
  .swiper-button-next-main {
    width: 52px;
    height: 52px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #000;
    font-size: 32px;
    font-weight: bold;
  }
  .swiper-button-prev-main:hover,
  .swiper-button-next-main:hover {
    background: #FFC107;
    transform: scale(1.1);
  }
  .banners_main__counter {
    font-size: 22px;
    font-weight: 700;
    color: #212121;
  }
  .banners_main__counter .current {
    color: #1E88E5;
  }

  #banners_main .s-title,
  #banners_main .banners_main__nav,
  #banners_main .banners_main__slider {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  #banners_main.animate .s-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
  #banners_main.animate .banners_main__nav {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
  }
  #banners_main.animate .banners_main__slider {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
  }

  /* Адаптив */
  @media (max-width: 992px) {
    .s-title {
      font-size: 44px;
    }
    .banners_main__header {
      margin-bottom: 50px;
    }
    .banners_main__nav {
      padding: 14px 28px;
      gap: 20px;
    }
    .swiper-button-prev-main,
    .swiper-button-next-main {
      width: 48px;
      height: 48px;
      font-size: 28px;
    }
    .banners_main__counter {
      font-size: 20px;
    }
  }
  @media (max-width: 768px) {
    .s-title {
      font-size: 36px;
    }
    .banners_main__header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    .banners_main__nav {
      align-self: flex-end;
    }
    .swiper-button-prev-main,
    .swiper-button-next-main {
      width: 44px;
      height: 44px;
      font-size: 26px;
    }
	#banners_main {
    padding: 80px 0 20px;
  }
  }
  
  
  
  
  
  
  
  
   .services {
    padding: 80px 0 0;
    background: #FFFFFF;
  }
  .mt45 {
    margin-top: 45px;
  }
  .services__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
  .s-title {
    font-size: 52px;
    font-weight: 900;
    color: #212121;
    margin: 0;
  }
  .title-nav__link {
    font-size: 18px;
    font-weight: 700;
    color: #1E88E5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
  }
  .title-nav__link:hover {
    color: #FFD700;
  }
  .services__slider-wrapper {
    position: relative;
    padding: 0 80px;
  }
  .services__slider {
    overflow: hidden;
    border-radius: 20px;
  }
  .service {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(66, 165, 245, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 480px;
  }
  .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(66, 165, 245, 0.25);
  }
  .service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .service:hover img {
    transform: scale(1.05);
  }
  .service__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #FFFFFF;
  }
  .service__price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFD700;
    color: #000;
    padding: 8px 16px;
    border-radius: 10px;
    align-self: flex-start;
  }
  .service__title {
    font-size: 24px;
    font-weight: 800;
  }
  .services__prev,
  .services__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  }
  .services__prev {
    left: 10px;
  }
  .services__next {
    right: 10px;
  }
  .services__prev:hover,
  .services__next:hover {
    background: #FFC107;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  }

  .services .s-title,
  .services .title-nav__link,
  .services__slider-wrapper,
  .services__prev,
  .services__next {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .services.animate .s-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
  .services.animate .title-nav__link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
  .services.animate .services__slider-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
  }
  .services.animate .services__prev,
  .services.animate .services__next {
    opacity: 1;
    transform: translateY(-50%);
    transition-delay: 0.7s;
  }

  /* Адаптив */
  @media (max-width: 1200px) {
    .services__slider-wrapper {
      padding: 0 60px;
    }
  }
  @media (max-width: 992px) {
    .s-title {
      font-size: 44px;
    }
    .services__header {
      margin-bottom: 50px;
    }
    .service {
      height: 420px;
    }
    .services__slider-wrapper {
      padding: 0 50px;
    }
  }
  @media (max-width: 768px) {
    .s-title {
      font-size: 36px;
    }
    .services__header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    .title-nav__link {
      align-self: flex-end;
    }
    .service {
      height: 380px;
    }
    .services__slider-wrapper {
      padding: 0 40px;
    }
    .services__prev,
    .services__next {
      width: 48px;
      height: 48px;
      font-size: 28px;
    }
  }
  
  
  
  
  
  
  
  
  
   .advantages {
    padding: 0;
    background: #FFFFFF;
  }

  .advantages__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .advantages__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(66, 165, 245, 0.1);
    transition: all 0.3s ease;
  }

  .advantages__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(66, 165, 245, 0.2);
  }

  .advantages__icon {
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
  }

  .advantages__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .advantages__text {
    font-size: 22px;
    font-weight: 700;
    color: #212121;
    line-height: 1.4;
  }

  /* Адаптив */
  @media (max-width: 1200px) {
    .advantages__wrapper {
      gap: 30px;
    }

    .advantages__item {
      padding: 32px 20px;
    }

    .advantages__icon {
      width: 100px;
      height: 100px;
    }

    .advantages__text {
      font-size: 20px;
    }
  }

  @media (max-width: 992px) {
    .advantages__wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .advantages {
      padding: 80px 0;
    }

    .advantages__wrapper {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .advantages__item {
      padding: 28px 20px;
    }

    .advantages__icon {
      width: 90px;
      height: 90px;
      margin-bottom: 24px;
    }

    .advantages__text {
      font-size: 19px;
    }
  }
  
  
  
  
  
  
  
  
  
  .responsibility {
    padding: 80px 0;
    background: url('/userfiles/images/balkone12.webp') center/cover no-repeat;
    position: relative;
  }
  .responsibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,0.95) 10%,
      rgba(255,255,255,0) 25%,
      rgba(255,255,255,0) 75%,
      rgba(255,255,255,0.95) 100%,
      rgba(255,255,255,1) 100%);
    pointer-events: none;
  }
  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .s-title {
    font-size: 52px;
    font-weight: 900;
    text-align: left;
    color: #212121;
    margin: 0;
  }
  .responsibility__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  .responsibility__item {
    background: rgba(227, 242, 253, 0.9);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(66, 165, 245, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .responsibility__item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(66, 165, 245, 0.2);
  }
  .responsibility__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 32px 20px;
  }
  .responsibility__title {
    font-size: 24px;
    font-weight: 900;
    color: #212121;
    line-height: 1.2;
  }
  .responsibility__count {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    background: #FFD700;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }
  .responsibility__desc {
    padding: 0 32px;
    flex-grow: 1;
  }
  .responsibility__desc p {
    font-size: 20px;
    line-height: 1.5;
    color: #212121;
  }
  .responsibility__call {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    background: linear-gradient(to right, #FFD700, #FFC107);
  }
  .responsibility__call .btn {
    background: #212121;
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
  }
  .responsibility__call .btn:hover {
    background: #000000;
    transform: translateY(-4px);
  }
  .responsibility__call img {
    max-width: 140px;
    height: auto;
  }
  .responsibility__bottom {
    margin-top: auto;
    padding: 32px;
    text-align: center;
  }
  .responsibility__bottom img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  .responsibility .s-title,
  .responsibility__item {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .responsibility.animate .s-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
  .responsibility.animate .responsibility__item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
  }
  .responsibility.animate .responsibility__item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
  }
  .responsibility.animate .responsibility__item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
  }
  .responsibility.animate .responsibility__item:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.0s;
  }
  /* Адаптив */
  @media (max-width: 1200px) {
    .s-title {
      font-size: 48px;
    }
    .responsibility__title {
      font-size: 26px;
    }
    .responsibility__count {
      font-size: 28px;
      padding: 8px 16px;
      gap: 8px;
    }
    .responsibility__desc p {
      font-size: 18px;
    }
  }
  @media (max-width: 992px) {
    .responsibility__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .responsibility__call {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
    .responsibility__call img {
      max-width: 120px;
    }
  }
  @media (max-width: 768px) {
	   .responsibility {
    padding: 80px 0 20px;
  }
    .s-title {
      font-size: 42px;
    }
    .responsibility__grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .responsibility__top {
      padding: 32px 24px 20px;
      align-items: flex-start;
      flex-direction: column;
      gap: 16px;
    }
    .responsibility__title {
      font-size: 24px;
    }
    .responsibility__count {
      font-size: 26px;
      padding: 8px 14px;
      gap: 8px;
    }
    .responsibility__desc {
      padding: 0 24px;
    }
    .responsibility__desc p {
      font-size: 17px;
    }
    .responsibility__call,
    .responsibility__bottom {
      padding: 28px 24px;
    }
  }
  
  
  
  
  
  
  
  
  .design {
    padding: 80px 0 0;
    background: #FFFFFF;
  }
  .design__wrapper {
    display: grid;
    grid-template-columns: 60% calc(40% - 80px);
    gap: 80px;
    align-items: start;
  }
  .design__left {
    display: flex;
    flex-direction: column;
  }
  .design__image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(66, 165, 245, 0.2);
  }
  .design__img {
    width: 100%;
    height: auto;
    display: block;
  }
  .design__list {
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    transform: translateY(40px);
  }
  .design__list-item {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 12px 35px rgba(66, 165, 245, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .design__list-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(66, 165, 245, 0.3);
  }
  .design__list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: #FFD700;
    border-radius: 50%;
    transform: translate(-20%, -50%);
  }
  .design__list-icon-wrapper {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .design__list-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .design__list-title {
    font-size: 20px;
    font-weight: 700;
    color: #212121;
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
  }
  .design__list-title b {
    color: #1E88E5;
  }
  .design__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
  }
  .design__right .s-title {
    font-size: 52px;
    font-weight: 900;
    color: #212121;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  .design__desc {
    font-size: 28px;
    font-weight: 700;
    color: #1E88E5;
    margin-bottom: 32px;
  }
  .design__text {
    margin-bottom: 40px;
  }
  .design__text p {
    font-size: 22px;
    line-height: 1.6;
    color: #212121;
    margin-bottom: 20px;
  }
  .design__text p:last-child {
    margin-bottom: 0;
  }
  .design .btn {
    background: linear-gradient(135deg, #FFEB3B, #FFC107);
    color: #000;
    padding: 20px 48px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    align-self: flex-start;
  }
  .design .btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.6);
  }

  .design .s-title,
  .design__desc,
  .design__text,
  .design .btn,
  .design__image,
  .design__list-item {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .design.animate .s-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
  .design.animate .design__desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
  }
  .design.animate .design__text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
  }
  .design.animate .design .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
  }
  .design.animate .design__image {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
  .design.animate .design__list-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
  }
  .design.animate .design__list-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
  }
  .design.animate .design__list-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
  }
  .design.animate .design__list-item:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
  }

  /* Адаптив */
  @media (max-width: 1200px) {
    .design__wrapper {
      gap: 60px;
    }
    .design__right .s-title {
      font-size: 48px;
    }
    .design__desc {
      font-size: 26px;
    }
    .design__text p {
      font-size: 20px;
    }
    .design__list {
      bottom: 0;
      left: 30px;
      right: 30px;
      gap: 20px;
      transform: translateY(30px);
    }
    .design__list-item {
      padding: 28px 20px;
    }
    .design__list-icon-wrapper {
      width: 65px;
      height: 65px;
    }
    .design__list-title {
      font-size: 19px;
    }
    .design__list-item::before {
      width: 80px;
      height: 80px;
    }
  }
  @media (max-width: 992px) {
    .design__wrapper {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    .design__left {
      order: 2;
    }
    .design__right {
      order: 1;
      padding-top: 0;
      text-align: center;
    }
    .design .btn {
      align-self: center;
    }
    .design__list {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      margin-top: 40px;
      transform: none;
      grid-template-columns: repeat(2, 1fr);
    }
    .design__list-item::before {
      width: 80px;
      height: 80px;
    }
  }
  @media (max-width: 768px) {
    .design {
      padding: 20px 0;
    }
    .design__right .s-title {
      font-size: 42px;
    }
    .design__desc {
      font-size: 24px;
    }
    .design__text p {
      font-size: 19px;
    }
    .design__list {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 30px;
    }
    .design__list-item {
      padding: 28px 24px;
    }
    .design__list-icon-wrapper {
      width: 60px;
      height: 60px;
    }
    .design__list-title {
      font-size: 18px;
    }
    .design__list-item::before {
      width: 70px;
      height: 70px;
    }
    .design .btn {
      padding: 18px 40px;
      font-size: 18px;
      width: 100%;
      text-align: center;
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  
   .single-company {
    padding: 80px 0 0;
    background: url('/userfiles/images/balkone06.webp') center/cover no-repeat;
    position: relative;
  }
  .single-company::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,0.95) 10%,
      rgba(255,255,255,0) 25%,
      rgba(255,255,255,0) 75%,
      rgba(255,255,255,0.95) 100%,
      rgba(255,255,255,1) 100%);
    pointer-events: none;
  }
  .mt150 {
    margin-top: 150px;
  }
  .mt35 {
    margin-top: 35px;
  }
  .company__wrapper {
    display: grid;
    grid-template-columns: 40% calc(60% - 100px);
    gap: 100px;
    align-items: center;
  }
  .company__left {
    display: flex;
    flex-direction: column;
  }
  .company__left .s-title {
    font-size: 52px;
    font-weight: 900;
    color: #212121;
    line-height: 1.2;
    margin-bottom: 0;
    position: relative;
    z-index: 3; 
  }
  .company__desk {
    font-size: 24px;
    line-height: 1.6;
    color: #212121;
  }
  .company__badge {
    background: #FFD700;
    padding: 40px 48px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 480px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  }
  .company__badge-title {
    font-size: 72px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 8px;
  }
  .company__badge-desc {
    font-size: 26px;
    font-weight: 700;
    color: #000;
  }
  .company__right {
    position: relative;
  }
  .company__right img {
    width: 100%;
    height: auto;
    display: block;
  }
  .company__info {
    position: absolute;
    top: 40px;
    right: 40px;
    padding: 28px 36px;
    text-align: left;
    max-width: 300px;
  }
  .company__title {
    font-size: 32px;
    font-weight: 900;
    color:#fff;
/*     color: #212121; */
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .company__title span {
    color: #FFC107;
/*     color: #1E88E5; */
    font-size: 40px;
  }



  .company__city {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 16px;
  }
  .company__city li {
    background: #212121;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  .company__city li:hover {
    background: #000000;
    transform: translateY(-4px);
  }
  /* Анимация появления при скролле */
  .single-company .s-title,
  .single-company .company__desk,
  .single-company .company__badge,
  .single-company .company__right img,
  .single-company .company__info {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .single-company.animate .s-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
  .single-company.animate .company__desk {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
  }
  .single-company.animate .company__badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
  }
  .single-company.animate .company__right img {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
  .single-company.animate .company__info {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
  }
  /* Адаптив */
  @media (max-width: 1200px) {
    .company__wrapper {
      gap: 60px;
    }
    .company__left .s-title {
      font-size: 48px;
    }
    .company__desk {
      font-size: 22px;
    }
    .company__badge {
      padding: 36px 40px;
      max-width: 340px;
    }
    .company__badge-title {
      font-size: 64px;
    }
    .company__badge-desc {
      font-size: 24px;
    }
    .company__info {
      top: 30px;
      right: 30px;
      padding: 24px 32px;
      max-width: 280px;
    }
    .company__title {
      font-size: 30px;
      margin-bottom: 16px;
    }
    .company__title span {
      font-size: 36px;
    }
    .company__city {
      gap: 12px;
    }
    .company__city li {
      font-size: 17px;
      padding: 10px 20px;
    }
  }
  @media (max-width: 992px) {
    .company__wrapper {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    .company__left {
      order: 2;
    }
    .company__right {
      order: 1;
    }
    .company__info {
      position: relative;
      top: auto;
      right: auto;
      margin-top: 40px;
      text-align: center;
      background: rgba(255, 255, 255, 0.75);
      max-width: 100%;
    }
    .company__city {
      justify-content: center;
    }
  }
  @media (max-width: 768px) {
    .single-company {
      padding: 20px 0;
    }
	.mt150 {
    margin-top: 50px;
  }
    .company__left .s-title {
      font-size: 42px;
    }
    .company__desk {
      font-size: 20px;
    }
    .company__badge {
      max-width: 100%;
      padding: 32px;
      text-align: center;
    }
    .company__badge-title {
      font-size: 56px;
    }
    .company__badge-desc {
      font-size: 22px;
    }
    .company__title {
      font-size: 28px;
    }
    .company__title span {
      font-size: 34px;
    }
    .company__city {
      flex-direction: column;
      gap: 16px;
    }
    .company__city li {
      font-size: 18px;
      padding: 14px;
    }
  }
  
  
  
  
  
  
   .portfolio {
    padding: 80px 0 0;
    background: #FFFFFF;
    overflow: hidden;
  }

  .mt35 {
    margin-top: 35px;
  }
  .title-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }
  .title-nav__link {
    font-size: 18px;
    font-weight: 700;
    color: #1E88E5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
  }
  .title-nav__link:hover {
    color: #FFD700;
  }
  .title-desc {
    font-size: 24px;
    line-height: 1.6;
    color: #212121;
    max-width: 900px;
  }
  .portfolio__slider-fullwidth {
    position: relative;
    margin-top: 80px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
  }
  .portfolio__slider {
    position: relative;
    height: 400px;
    overflow: hidden;
  }
  .portfolio__slider .flickity-viewport {
    height: 100%;
  }
  .portfolio__slide {
    width: calc(50% - 30px);
    height: 100%;
    margin-right: 60px;
    opacity: 0.6;
    transition: opacity 0.4s ease;
  }
  .portfolio__slide.is-selected {
    opacity: 1;
  }
  .work {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(66, 165, 245, 0.15);
    transition: all 0.3s ease;
  }
  .work:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(66, 165, 245, 0.25);
  }
  .work img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-grow: 1;
    transition: transform 0.5s ease;
  }
  .work:hover img {
    transform: scale(1.05);
  }
  .work__view-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #212121;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  .work__text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 36px 24px 24px;
    color: #FFFFFF;
    pointer-events: none;
  }
  .work__price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFD700;
    color: #000;
    padding: 8px 16px;
    border-radius: 10px;
    align-self: flex-start;
  }
  .work__title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .work__desc {
    font-size: 17px;
    opacity: 0.9;
  }
  .portfolio__arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1440px;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }
  .portfolio__prev,
  .portfolio__next {
    pointer-events: all;
    width: 64px;
    height: 64px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 36px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
  }
  .portfolio__prev:hover,
  .portfolio__next:hover {
    background: #FFC107;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
  }

  /* Анимация появления при скролле */
  .portfolio .s-title,
  .portfolio .title-nav__link,
  .portfolio .title-desc,
  .portfolio__slider-fullwidth,
  .portfolio__prev,
  .portfolio__next {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .portfolio.animate .s-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
  .portfolio.animate .title-nav__link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
  .portfolio.animate .title-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
  }
  .portfolio.animate .portfolio__slider-fullwidth {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
  }
  .portfolio.animate .portfolio__prev,
  .portfolio.animate .portfolio__next {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
  }

  /* Адаптив */
  @media (max-width: 1200px) {
    .portfolio__slide {
      margin-right: 50px;
    }
  }
  @media (max-width: 992px) {
    .portfolio__slide {
      margin-right: 40px;
    }
  }
  @media (max-width: 768px) {
    .portfolio__slide {
      width: 80%;
      margin-right: 20px;
    }
    .portfolio__arrows {
      padding: 0 10px;
    }
    .portfolio__prev,
    .portfolio__next {
      width: 56px;
      height: 56px;
      font-size: 32px;
    }
  }
  @media (max-width: 576px) {
    .portfolio__slide {
      width: 90%;
      margin-right: 10px;
    }
  }
  
  
  
  
  
  
  
  
  
  
   .reviews {
    padding: 0;
    background: #FFFFFF;
  }
  .mt130 { margin-top: 130px; }
  .mt30 { margin-top: 30px; }
  .mt45 { margin-top: 45px; }
  .s-title {
    font-size: 52px;
    font-weight: 900;
    color: #212121;
    margin: 0;
  }
  .s-title-wr {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .title-nav__link {
    font-size: 18px;
    font-weight: 700;
    color: #1E88E5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
  }
  .title-nav__link:hover {
    color: #FFD700;
  }
  .reviews__tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .reviews__tabs-buttons {
    display: flex;
    gap: 16px;
  }
  .reviews__tab {
    padding: 12px 32px;
    border: 2px solid #1E88E5;
    border-radius: 12px;
    background: transparent;
    color: #1E88E5;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
  }
  .reviews__tab.active,
  .reviews__tab:hover {
    background: #1E88E5;
    color: #fff;
  }
  .reviews__arrows {
    display: flex;
    gap: 16px;
  }
  .reviews__arrows button {
    width: 64px;
    height: 64px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 36px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s;
  }
  .reviews__arrows button:hover {
    background: #FFC107;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
  }
  .review-video-cus,
  .review-messenger {
    position: relative;
    display: block;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(66,165,245,0.15);
    transition: transform 0.3s ease;
  }
  .review-video-cus:hover,
  .review-messenger:hover {
    transform: translateY(-10px);
  }
  .review-video-cus img,
  .review-messenger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .review-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .review-video__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
  }
  .review-video__desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 8px;
  }
  .review-video__name {
    font-size: 18px;
    font-weight: 700;
  }
  .reviews__brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
  }
  .reviews__brand:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }
  .tab-content {
    display: none;
  }
  .tab-content.active {
    display: block;
  }
  /* Мобильная адаптация */
  @media (max-width: 992px) {
    .s-title {
      font-size: 44px;
    }
  }
  @media (max-width: 768px) {
    .s-title {
      font-size: 36px;
    }
    .reviews__tabs {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    .reviews__arrows {
      align-self: flex-end;
    }
    .reviews__arrows button {
      width: 56px;
      height: 56px;
      font-size: 32px;
    }
    .reviews__brands .s-title-wr {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    .reviews__arrows_brands {
      align-self: flex-end;
    }
  }
  
  
  
  
  
  
  
  
   .news {
    padding: 0;
    background: #FFFFFF;
  }
  .title-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .s-title {
    font-size: 52px;
    font-weight: 900;
    color: #212121;
    margin: 0;
  }
  .news__all-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 700;
    color: #1E88E5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    white-space: nowrap;
  }
  .news__all-link:hover {
    color: #FFD700;
  }
  .news__all-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }
  .news__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
  }
  .news__card {
    display: block;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(66,165,245,0.15);
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    text-decoration: none; /* Убираем подчёркивание у всей карточки-ссылки */
  }
  .news__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(66,165,245,0.25);
  }
  .news__image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  .news__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 20px;
  }
  .news__card:hover .news__image img {
    transform: scale(1.05);
  }
  .news__badge {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #FFD700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    z-index: 10;
    font-size: 36px;
    font-weight: bold;
    color: #000;
  }
  .news__bottom {
    padding: 30px 24px 30px;
    height: calc(400px - 200px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 5;
  }
  .news__title {
    font-size: 20px;
    font-weight: 800;
    color: #212121;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .news__details {
    font-size: 16px;
    color: #666;
    margin-top: 8px;
  }

  /* Анимация появления при скролле */
  .news .s-title,
  .news .news__all-link,
  .news__card {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .news.animate .s-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
  .news.animate .news__all-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
  .news.animate .news__card:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
  }
  .news.animate .news__card:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
  }
  .news.animate .news__card:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
  }

  /* Адаптация под мобильные */
  @media (max-width: 992px) {
    .news__wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
    .s-title {
      font-size: 44px;
    }
  }
  @media (max-width: 768px) {
    .news__wrapper {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .s-title {
      font-size: 36px;
    }
    .news__card {
      height: auto;
      min-height: 420px;
    }
    .news__image {
      height: 220px;
    }
    .news__bottom {
      height: auto;
      padding: 24px;
      min-height: 200px;
      justify-content: flex-start;
    }
    .news__badge {
      width: 50px;
      height: 50px;
      font-size: 30px;
    }
    .news__all-link {
      position: static;
      transform: none;
      margin-left: auto;
    }
    .title-nav {
      flex-wrap: wrap;
    }
  }
  @media (max-width: 480px) {
    .container {
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden;
    }
    .news__badge {
      left: 15px;
    }
  }
  
  
  
  
  
  
  
  
  
  .form {
    padding: 0;
    background: url('/userfiles/images/balkone09.webp') center/cover no-repeat;
    position: relative;
  }
  .form::before {
     content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,0.95) 10%,
      rgba(255,255,255,0) 25%,
      rgba(255,255,255,0) 75%,
      rgba(255,255,255,0.95) 100%,
      rgba(255,255,255,1) 100%);
    pointer-events: none;
  }
  .form__wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,0.9);
    z-index: 2;
  }
  .form__body {
    padding: 60px 80px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    box-sizing: border-box;
  }
  .form__title {
    font-size: 52px;
    font-weight: 900;
    color: #212121;
    line-height: 1.2;
    margin: 0;
  }
  .form__desc {
    font-size: 24px;
    color: #424242;
  }
  .form__fields-row {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .input {
    position: relative;
    flex: 1;
  }
  .input input {
    width: 100%;
    height: 72px;
    padding: 0 60px;
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    font-size: 18px;
    background: transparent;
    transition: border 0.3s;
  }
  .input input:focus {
    border-color: #1E88E5;
  }
  .input svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    fill: #666;
    pointer-events: none;
  }
  .btn.h72 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
    min-width: 240px;
    background: #1E88E5;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .btn.h72:hover {
    background: #1565C0;
  }
  .form__checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    font-size: 16px;
    color: #666;
  }
  .form__checkbox a {
    color: #1E88E5;
    text-decoration: underline;
  }
  .form__checkbox svg {
    width: 24px;
    height: 24px;
    fill: #1E88E5;
  }
  .form__human {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 350px;
    background: #FFD700;
    border-radius: 0 30px 30px 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .form__image {
    position: absolute;
    right: 200px;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }
  .form__image img {
    height: 95%;
    width: auto;
    max-width: none;
  }
  .form__human-info {
    position: absolute;
    right: 20px;
    bottom: 80px;
    color: #000;
    text-align: right;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    z-index: 3;
  }
  .form__human-name {
    font-size: 28px;
    font-weight: 900;
  }
  .form__human-work {
    font-size: 20px;
    margin-top: 5px;
  }
  /* Анимация появления при скролле */
  .form .form__title,
  .form .form__desc,
  .form .form__fields,
  .form .form__checkbox,
  .form .form__human {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .form.animate .form__title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
  .form.animate .form__desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
  }
  .form.animate .form__fields {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
  }
  .form.animate .form__checkbox {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
  }
  .form.animate .form__human {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
  }
  @media (max-width: 992px) {
    .form__title {
      font-size: 44px;
    }
    .form__desc {
      font-size: 20px;
    }
    .form__body {
      padding: 50px 60px;
      width: 70%;
    }
    .form__image {
      right: 80px;
    }
    .form__human-info {
      right: 15px;
      bottom: 70px;
      font-size: 18px;
    }
    .form__human-name {
      font-size: 26px;
    }
    .form__human-work {
      font-size: 18px;
    }
  }
  @media (max-width: 768px) {
    .form__wrapper {
      background: #FFFFFF;
    }
    .form__body {
      padding: 50px 40px;
      width: 100%;
    }
    .form__fields-row {
      flex-direction: column;
    }
    .btn.h72 {
      min-width: auto;
      width: 100%;
    }
    .form__human {
      position: relative;
      width: 100%;
      height: 320px;
      background: #FFD700;
      border-radius: 0 0 30px 30px;
    }
    .form__image {
      right: auto;
      left: 20%;
      transform: translateX(-50%);
    }
    .form__image img {
      height: auto;
      max-height: 100%;
    }
    .form__human-info {
      right: 30px;
      bottom: 60px;
      text-align: right;
      font-size: 24px;
    }
    .form__human-name {
      font-size: 32px;
    }
    .form__human-work {
      font-size: 22px;
    }
  }
  @media (max-width: 480px) {
    .form__title {
      font-size: 36px;
    }
    .form__body {
      padding: 40px 20px;
    }
    .input input,
    .btn.h72 {
      height: 60px;
      font-size: 16px;
    }
    .form__human-info {
      right: 20px;
      bottom: 50px;
      font-size: 20px;
    }
    .form__human-name {
      font-size: 28px;
    }
    .form__human-work {
      font-size: 20px;
    }
  }
  
  
  
  
  
  
  
  
  
   .faq {
    padding: 0 0 80px 0;
    background: #FFFFFF;
  }
  .faq__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .faq__column {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .faq__item {
    background: #FFFFFF;
    border: 2px solid rgba(66, 165, 245, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(66, 165, 245, 0.1);
    transition: all 0.3s ease;
  }
  .faq__item.active {
    border-color: #1E88E5;
    box-shadow: 0 10px 30px rgba(66, 165, 245, 0.2);
  }
  .faq__question {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #212121;
    transition: all 0.3s;
  }
  .faq__question:hover {
    color: #1E88E5;
  }
  .faq__toggle {
    font-size: 32px;
    font-weight: bold;
    color: #1E88E5;
    transition: transform 0.3s ease;
  }
  .faq__item.active .faq__toggle {
    transform: rotate(45deg);
  }
  .faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq__answer-text {
    padding: 0 32px 32px;
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
  }

  /* Анимация появления при скролле */
  .faq .s-title,
  .faq__item {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .faq.animate .s-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
  .faq.animate .faq__item:nth-child(1) { transition-delay: 0.4s; }
  .faq.animate .faq__item:nth-child(2) { transition-delay: 0.5s; }
  .faq.animate .faq__item:nth-child(3) { transition-delay: 0.6s; }
  .faq.animate .faq__item:nth-child(4) { transition-delay: 0.7s; }
  .faq.animate .faq__item:nth-child(5) { transition-delay: 0.8s; }
  .faq.animate .faq__item:nth-child(6) { transition-delay: 0.4s; }
  .faq.animate .faq__item:nth-child(7) { transition-delay: 0.5s; }
  .faq.animate .faq__item:nth-child(8) { transition-delay: 0.6s; }
  .faq.animate .faq__item:nth-child(9) { transition-delay: 0.7s; }
  .faq.animate .faq__item:nth-child(10) { transition-delay: 0.8s; }
  .faq.animate .faq__item {
    opacity: 1;
    transform: translateY(0);
  }


  .form__fields .top-bar__phone {
        align-items: center;
        gap: 8px;
        font-size: 24px;
        height: 72px;
        padding-left: 10px;
        min-width: 240px;
        font-size: 20px;
        font-weight: 700;
        border: none;
        border-radius: 16px;
        cursor: pointer;
        transition: background 0.3s;
        border: #000 solid 2px;
  }

.multi-window-show{
  cursor: pointer;
}

  /* Адаптив */
  @media (max-width: 992px) {
    .faq__wrapper {
      gap: 30px;
    }
    .faq__question {
      font-size: 19px;
      padding: 20px 28px;
    }
  }
  @media (max-width: 768px) {
    .banners_main{
display: none;
    
    }
.hero .slider-arrow{
  display: none;
}

    .faq__wrapper {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .faq__question {
      font-size: 18px;
      padding: 20px 24px;
    }
    .faq__answer-text {
      font-size: 17px;
      padding: 0 24px 28px;
    }


    .form__fields .top-bar__phone {
      height: 60px;
      font-size: 20px;
      min-width: auto;
      width: 100%;
      justify-content: center;

    }

  body  .mt150 {

      margin-top: 50px;
    }

    body  .mt130 {
      margin-top: 30px;

    }


    .company__title {
   color: #212121;
    }
    .company__title span {

    color: #1E88E5; 

    }
  }

  @media (max-width: 410px) {
  .reviews__tab {
    padding: 12px 12px;

  }}

/* 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 .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 .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,.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 .4s
    }
    .blog__main-btn:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(44,95,122,.5)}

    .blog__card{
        background:rgba(255,255,255,.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,.88),rgba(255,255,255,.88)) padding-box,
                    linear-gradient(135deg,#2c5f7a,#46728a,#1E88E5,#FFC107) border-box;
        box-shadow:0 12px 40px rgba(0,0,0,.12);transition:all .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,.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 .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,.5)}

    .blog__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}

    /* Анимации появления */
    .blog__header > .blog__card:nth-of-type(1){animation-delay:.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(.16,1,.3,1)
    }
    .blog-cont.animated .blog-floating-img{right:20px;opacity:.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/balkone12.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,.9),rgba(120,80,50,.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 .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 .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 .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 {
    padding: 0;
    background: #FFFFFF;
  }

  .prices__intro p {
    font-size: 22px;
    line-height: 1.5;
    color: #555555;
    max-width: 780px;
  }

  .prices__table-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(66, 165, 245, 0.15);
  }

  .prices__table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(227, 242, 253, 0.6);
    backdrop-filter: blur(8px);
  }

  .prices__table th,
  .prices__table td {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(66, 165, 245, 0.15);
    font-size: 18px;
    color: #212121;
  }

  .prices__table th {
    background: linear-gradient(135deg, #1E88E5, #42A5F5);
    color: #FFFFFF;
    font-weight: 700;
  }

  .prices__table .prices__service {
    width: 75%;
  }

  .prices__table .prices__price {
    width: 25%;
    font-weight: 800;
    font-size: 20px;
    text-align: right;
    color: #FFFFFF !important;          
  }

  .prices__table tbody td:last-child {
    text-align: right;                    
    font-weight: 900;
    font-size: 21px;
    color: #1E88E5;
  }

  .prices__table tr:hover {
    background: rgba(66, 165, 245, 0.08);
  }

  .prices__table tr:last-child td {
    border-bottom: none;
  }

  .prices__note {
    text-align: center;
    font-size: 18px;
    color: #555555;
  }

  .prices__note p {
    margin-bottom: 24px;
  }

  .prices__note .btn-yellow {
    font-size: 20px;
    padding: 18px 48px;
  }

  /* Мобильная версия */
  @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: 16px;
      border-radius: 16px;
      overflow: hidden;
      background: #FFFFFF;
      box-shadow: 0 8px 25px rgba(66, 165, 245, 0.12);
    }

    .prices__table tr:last-child {
      margin-bottom: 0;
    }

    .prices__table td {
      padding: 18px 24px;
      border: none;
      font-size: 17px;
    }

    .prices__table td:first-child {
      background: #1E88E5;
      color: #FFFFFF;
      font-weight: 700;
      font-size: 19px;
      text-align: center;
    }

    .prices__table td:last-child {
      text-align: center;
      font-size: 22px;
      font-weight: 900;
      color: #212121;
      padding-top: 8px;
    }
  }

  @media (max-width: 576px) {
    .prices .s-title {
      font-size: 38px;
    }

    .prices__table td {
      padding: 16px 20px;
    }

    .prices__table td:first-child {
      font-size: 18px;
    }

    .prices__table td:last-child {
      font-size: 20px;
    }
  }