* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #0f1115;
  color: #ffffff;
  overflow-x: hidden;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
header.loaded {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.top-bar {
  background: rgba(22, 26, 34, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #ffffff;
  z-index: 1002;
}
.top-right {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
}
.phone {
  font-weight: 600;
  font-size: 18px;
}
.schedule {
  color: #b7bcc8;
}
.top-right .btn {
  background: #d4a857;
  color: #0f1115;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}
.top-right .btn:hover {
  background: #f0c46a;
}
.main-nav {
  background: rgba(15, 17, 21, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}
nav a {
  color: #b7bcc8;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover {
  color: #d4a857;
}
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 999;
  padding: 120px 20px 60px;
}
.mobile-overlay.active {
  transform: translateY(0);
  opacity: 1;
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
  cursor: pointer;
  color: #ffffff;
  z-index: 1003;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}
.mobile-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.mobile-overlay .logo {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}
.mobile-nav {
  position: relative;
  top: -30%;
}
.mobile-nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.mobile-nav li {
  width: 100%;
  text-align: left;
}
.mobile-nav a {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transition: color 0.3s;
}
.mobile-nav a:hover {
  color: #d4a857;
}
.mobile-contact {
  text-align: center;
  margin-top: -150px;
}
.mobile-contact .phone {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
.mobile-contact .schedule {
  font-size: 18px;
  color: #b7bcc8;
  margin-bottom: 40px;
}
.mobile-contact .btn {
  background: #d4a857;
  color: #0f1115;
  padding: 18px 56px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url("/UPLOADS/hero.jpg") center/cover no-repeat;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 21, 0.82);
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero.loaded::before {
  opacity: 1;
}
.hero .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.left {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero.loaded .left {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.subtitle {
  font-size: 24px;
  color: #b7bcc8;
  margin-bottom: 40px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero.loaded .subtitle {
  opacity: 1;
  transition-delay: 0.42s;
}
.buttons {
  display: flex;
  gap: 24px;
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero.loaded .buttons {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.54s;
}
.btn {
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary {
  background: #d4a857;
  color: #0f1115;
}
.btn-primary:hover {
  background: #f0c46a;
}
.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hero-image {
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero.loaded .hero-image img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.cards-wrapper {
  max-width: 1440px;
  margin: 0px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.card {
  background: rgba(22, 26, 34, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero.loaded .card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}
.hero.loaded .card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.02s;
}
.hero.loaded .card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.14s;
}
.hero.loaded .card:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.26s;
}
.card-icon {
  color: #d4a857;
  font-size: 48px;
  margin-bottom: 16px;
}
.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.card-text {
  font-size: 14px;
  color: #b7bcc8;
}
@media (max-width: 868px) {
  .hamburger {
    display: block;
  }
  .top-right {
    display: none;
  }
  .main-nav {
    display: none;
  }
  h1 {
    font-size: 40px;
  }
  .subtitle {
    font-size: 20px;
  }
  .buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 20px;
  }
  .hero-image {
    margin-top: 40px;
    order: 2;
  }
  .left {
    order: 1;
  }
  .cards-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 60px;
    padding: 0;
  }
  .card {
    width: 100%;
  }
  .card-icon {
    font-size: 28px;
  }
  .hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.why-us {
  padding: 120px 0;
  background: #fff;
}

.why-us .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  gap: 40px;
  justify-content: center;
}

.why-text {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title-wrapper {
  position: relative;
  display: inline-block;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
  transform: translateY(30px);
  display: inline;
}

.title-arrow {
  font-size: 48px;
  color: #d4a857;
  margin-left: 16px;
  opacity: 0;
  display: inline-block;
}

.title-line {
  height: 4px;
  background: #d4a857;
  width: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 24px;
  color: #000;
  line-height: 1.4;
  transform: translateY(30px);
}

.why-card {
  background: #161a22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  width: 300px;
  box-sizing: border-box;
}

.why-card:hover {
  border-color: rgba(212, 168, 87, 0.4);
  box-shadow: 0 0 30px rgba(212, 168, 87, 0.15);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  color: #d4a857;
  margin-bottom: 24px;
  stroke-width: 1.8;
}

.why-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.why-card-text {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

@media (max-width: 1480px) {
  .why-us .container {
    padding: 0 20px;
  }
  .why-grid {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 300px);
    justify-content: center;
  }
  .why-text {
    grid-column: span 2;
  }
}

@media (max-width: 868px) {
  .why-us {
    padding: 80px 0;
  }
  .why-us .container {
    padding: 0 20px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-text {
    grid-column: 1;
  }
  .why-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .section-title {
    font-size: 40px;
  }
  .section-subtitle {
    font-size: 20px;
  }
  .why-card {
    padding: 32px 24px;
  }
  .title-arrow {
    display: none;
  }
}

.catalog-new {
  padding: 140px 0;
  background: #0f1115 url("/UPLOADS/banner.webp") center/cover no-repeat fixed;
  position: relative;
}
.catalog-new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 21, 0.8);
  pointer-events: none;
}

.catalog-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.catalog-title-block {
  text-align: center;
  margin-bottom: 100px;
}

.catalog-main-title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  transform: translateY(40px);
}

.catalog-sub-title {
  font-size: 22px;
  color: #ffffff;
  transform: translateY(30px);
}

.catalog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.catalog-item {
  background: #161a22;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-item:hover {
  box-shadow: 0 20px 40px rgba(212, 168, 87, 0.2);
  transform: translateY(-12px);
}

.item-image {
  height: 280px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalog-item:hover .item-image img {
  transform: scale(1.08);
}

.item-info {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.item-name {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.item-params {
  list-style: none;
  margin-bottom: auto;
  font-size: 17px;
  color: #fff;
  line-height: 1.7;
}

.item-params b{
  color: #d4a857;
  font-size: 20px;
  font-weight: 600;
}

.item-cost {
  font-size: 22px;
  color: #d4a857;
  margin: 24px 0;
}

.item-cost span {
  font-weight: 700;
  font-size: 28px;
}

.item-order {
  background: #d4a857;
  color: #fff;
  padding: 18px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: auto;
}

.item-order:hover {
  background: #f0c46a;
}

@media (max-width: 1024px) {
  .catalog-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 868px) {
  .catalog-new {
    padding: 100px 0;
  }
  .catalog-wrapper {
    padding: 0 20px;
  }
  .catalog-title-block {
    margin-bottom: 80px;
  }
  .catalog-main-title {
    font-size: 42px;
  }
  .catalog-sub-title {
    font-size: 19px;
  }
  .catalog-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .item-image {
    height: 240px;
  }
  .item-info {
    padding: 28px;
  }
}

.production {
  padding: 60px 0;
  background: #fff;
  color: #000;
  overflow: hidden;
}

.production .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.production-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 40px 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.production-desc {
  font-size: 24px;
  line-height: 1.7;
  color: #000;
  margin: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.production-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.production-features li {
  font-size: 22px;
  line-height: 1.6;
  padding-left: 48px;
  position: relative;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.production-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 20px;
  height: 20px;
  background: #d4a857;
  border-radius: 50%;
}

.production-timeline {
  position: relative;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  overflow: visible;
  align-items: center;
  padding: 80px 40px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.timeline-line {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 50%;
  height: 6px;
  background: rgba(212, 168, 87, 0.25);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-item {
  text-align: center;
  flex: 1 1 0;
  flex-shrink: 1;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: #d4a857;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.timeline-dot {
  width: 40px;
  height: 40px;
  background: #161a22;
  border: 8px solid #d4a857;
  border-radius: 50%;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.timeline-label {
  font-size: 26px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.production.is-visible .production-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.production.is-visible .production-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.production.is-visible .production-features li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.production.is-visible .production-features li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}
.production.is-visible .production-features li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
.production.is-visible .production-features li:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.95s;
}
.production.is-visible .production-features li:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}
.production.is-visible .timeline-line {
  transform: scaleX(1);
  transition-delay: 1.3s;
}

.production.is-visible .timeline-item:nth-child(1) .timeline-number {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1.5s;
}
.production.is-visible .timeline-item:nth-child(1) .timeline-dot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.7s;
}
.production.is-visible .timeline-item:nth-child(1) .timeline-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.9s;
}

.production.is-visible .timeline-item:nth-child(2) .timeline-number {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1.8s;
}
.production.is-visible .timeline-item:nth-child(2) .timeline-dot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2s;
}
.production.is-visible .timeline-item:nth-child(2) .timeline-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.2s;
}

.production.is-visible .timeline-item:nth-child(3) .timeline-number {
  opacity: 1;
  transform: scale(1);
  transition-delay: 2.1s;
}
.production.is-visible .timeline-item:nth-child(3) .timeline-dot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.3s;
}
.production.is-visible .timeline-item:nth-child(3) .timeline-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.5s;
}

.production.is-visible .timeline-item:nth-child(4) .timeline-number {
  opacity: 1;
  transform: scale(1);
  transition-delay: 2.4s;
}
.production.is-visible .timeline-item:nth-child(4) .timeline-dot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.6s;
}
.production.is-visible .timeline-item:nth-child(4) .timeline-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.8s;
}

.production.is-visible .timeline-item:nth-child(5) .timeline-number {
  opacity: 1;
  transform: scale(1);
  transition-delay: 2.7s;
}
.production.is-visible .timeline-item:nth-child(5) .timeline-dot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.9s;
}
.production.is-visible .timeline-item:nth-child(5) .timeline-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 3.1s;
}

.production.is-visible .timeline-item:nth-child(6) .timeline-number {
  opacity: 1;
  transform: scale(1);
  transition-delay: 3s;
}
.production.is-visible .timeline-item:nth-child(6) .timeline-dot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 3.2s;
}
.production.is-visible .timeline-item:nth-child(6) .timeline-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 3.4s;
}

.production.is-visible .timeline-item:nth-child(7) .timeline-number {
  opacity: 1;
  transform: scale(1);
  transition-delay: 3.5s;
}

.production.is-visible .timeline-item:nth-child(7) .timeline-dot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 3.7s;
}

.production.is-visible .timeline-item:nth-child(7) .timeline-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 3.9s;
}

/* Адаптив */
@media (max-width: 1024px) {
  .production .container {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }
  .production-features li {
    padding-left: 20px;
  }
  .production-features li::before {
    left: 0;
    transform: translateX(-50%);
    top: 10px;
  }
}

@media (max-width: 768px) {
  .production {
    padding: 100px 0;
  }
  .production .container {
    padding: 0 20px;
  }
  .production-title {
    font-size: 44px;
  }
  .production-desc {
    font-size: 20px;
  }
  .production-features li {
    font-size: 20px;
    text-align: left;
  }
  .production-timeline {
    flex-direction: column;
    padding: 80px 20px;
  }
  .timeline-line {
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 6px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }
  .production.is-visible .timeline-line {
    transform: scaleY(1);
  }
  .timeline-item {
    margin-bottom: 80px;
    min-width: auto;
  }
  .timeline-label {
    font-size: 22px;
  }
}

.quality {
  padding: 140px 0;
  background: #0f1115 url("/UPLOADS/fon.jpeg") center/cover no-repeat fixed;
  position: relative;
}
.quality::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 21, 0.8);
  pointer-events: none;
}
.quality .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.quality-header {
  text-align: center;
  margin-bottom: 100px;
}
.quality .section-title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  transform: translateY(20px);
}
.quality .section-subtitle {
  font-size: 24px;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
}
.quality-content {
  margin-bottom: 120px;
}
.table-title,
.certs-title {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
}
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}
.quality-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  background: #161a22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.quality-table thead {
  opacity: 0;
  transform: translateY(20px);
}
.quality-table th,
.quality-table td {
  padding: 20px 24px;
  text-align: left;
  font-size: 17px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.quality-table th {
  background: rgba(212, 168, 87, 0.15);
  color: #d4a857;
  font-weight: 600;
}
.quality-table tbody tr {
  opacity: 0;
  transform: translateY(20px);
}
.quality-table tbody tr:last-child {
  border-bottom: none;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.cert-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s;
  opacity: 0;
  transform: scale(0.95);
}
.cert-item:hover {
  border-color: rgba(212, 168, 87, 0.4);
  box-shadow: 0 0 30px rgba(212, 168, 87, 0.15);
  transform: translateY(-8px);
}
.cert-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 868px) {
  .quality {
    padding: 100px 0;
  }
  .quality .container {
    padding: 0 20px;
  }
  .quality .section-title {
    font-size: 42px;
  }
  .quality .section-subtitle {
    font-size: 20px;
  }
  .quality-content {
    margin-bottom: 80px;
  }
  .table-title,
  .certs-title {
    font-size: 28px;
  }
  .certs-grid {
    grid-template-columns: 1fr;
  }
  .quality-table th,
  .quality-table td {
    padding: 16px 12px;
    font-size: 16px;
  }
}

.application {
  padding: 140px 0;
  background: #fff;
}
.application .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.application-header {
  text-align: center;
  margin-bottom: 100px;
}
.application .section-title {
  font-size: 52px;
  font-weight: 700;
  color: #000;
  margin-bottom: 32px;
  transform: translateY(30px);
}
.application .section-subtitle {
  font-size: 24px;
  color: #000;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
  transform: translateY(30px);
}
.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.app-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  opacity: 0;
  transform: translateY(40px);
}
.app-image {
  position: absolute;
  inset: 0;
}
.app-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.app-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 17, 21, 0.95),
    rgba(15, 17, 21, 0.4)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.app-card:hover .app-overlay {
  opacity: 1;
}
.app-card:hover .app-image img {
  transform: scale(1.08);
}
.app-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}
.app-text {
  font-size: 18px;
  color: #b7bcc8;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .application-grid {
    gap: 32px;
  }
  .app-card {
    height: 380px;
  }
}
@media (max-width: 1024px) {
  .application-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-card {
    height: 420px;
  }
}
@media (max-width: 868px) {
  .application {
    padding: 100px 0;
  }
  .application .container {
    padding: 0 20px;
  }
  .application-header {
    margin-bottom: 80px;
  }
  .application .section-title {
    font-size: 42px;
  }
  .application .section-subtitle {
    font-size: 20px;
  }
  .application-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .app-card {
    height: 380px;
  }
  .app-overlay {
    padding: 32px;
  }
  .app-title {
    font-size: 26px;
  }
  .app-text {
    font-size: 17px;
  }
}

.delivery {
  padding: 140px 0;
  background: #0f1115;
}
.delivery .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.delivery-header {
  text-align: center;
  margin-bottom: 120px;
}
.delivery .section-title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
}
.delivery .section-subtitle {
  font-size: 24px;
  color: #b7bcc8;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
}
.infographic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 140px;
  position: relative;
}
.info-step {
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  position: relative;
}
.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #d4a857;
  color: #0f1115;
  font-size: 32px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.info-step img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.info-label {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
}
.info-line {
  height: 6px;
  background: #d4a857;
  align-self: center;
  flex: 1;
  max-width: 200px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}
.delivery-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  opacity: 0;
  transform: translateY(40px);
}
.info-block {
  background: #161a22;
  border-radius: 16px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.info-title {
  font-size: 32px;
  font-weight: 600;
  color: #d4a857;
  margin-bottom: 24px;
}
.info-text {
  font-size: 20px;
  color: #b7bcc8;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .infographic {
    gap: 32px;
  }
  .info-step img {
    width: 260px;
    height: 260px;
  }
  .info-label {
    font-size: 24px;
  }
  .info-line {
    max-width: 150px;
  }
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 28px;
    top: -16px;
  }
}
@media (max-width: 868px) {
  .delivery {
    padding: 100px 0;
  }
  .delivery .container {
    padding: 0 20px;
  }
  .delivery-header {
    margin-bottom: 80px;
  }
  .delivery .section-title {
    font-size: 42px;
  }
  .delivery .section-subtitle {
    font-size: 20px;
  }
  .infographic {
    flex-direction: column;
    gap: 60px;
  }
  .info-line {
    width: 6px;
    height: 120px;
    max-width: none;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    margin: 0 auto;
  }
  .info-step img {
    width: 100%;
    height: 280px;
  }
  .delivery-info {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .info-block {
    padding: 32px;
  }
  .info-title {
    font-size: 28px;
  }
  .info-text {
    font-size: 18px;
  }
  .step-number {
    top: -20px;
  }
}

.calculator {
  padding: 140px 0;
  background: #0f1115;
}
.calculator .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.calc-header {
  text-align: center;
  margin-bottom: 100px;
}
.calculator .section-title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
}
.calculator .section-subtitle {
  font-size: 24px;
  color: #b7bcc8;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.calc-form-wrapper {
  background: #161a22;
  border-radius: 16px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.calc-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form-group {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
}
.form-group label {
  font-size: 16px;
  color: #b7bcc8;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select {
  padding: 16px 20px;
  background: #0f1115;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  font-size: 18px;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #d4a857;
}
.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-submit {
  background: #d4a857;
  color: #0f1115;
  padding: 20px;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: background 0.3s;
}
.form-submit:hover {
  background: #f0c46a;
}
.calc-guarantee {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
}
.guarantee-image {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.guarantee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guarantee-title {
  font-size: 36px;
  font-weight: 600;
  color: #d4a857;
  margin-bottom: 32px;
}
.guarantee-list {
  list-style: none;
  font-size: 20px;
  color: #b7bcc8;
  line-height: 1.8;
}
.guarantee-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
}
.guarantee-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4a857;
  font-weight: bold;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .calc-grid {
    gap: 60px;
  }
  .guarantee-image {
    height: 320px;
  }
}
@media (max-width: 868px) {
  .calculator {
    padding: 100px 0;
  }
  .calculator .container {
    padding: 0 20px;
  }
  .calc-header {
    margin-bottom: 80px;
  }
  .calculator .section-title {
    font-size: 42px;
  }
  .calculator .section-subtitle {
    font-size: 20px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .calc-form-wrapper {
    padding: 32px;
  }
  .guarantee-image {
    height: 280px;
    margin-bottom: 32px;
  }
  .guarantee-title {
    font-size: 32px;
  }
  .guarantee-list {
    font-size: 18px;
  }
}

.reviews {
  padding: 140px 0;
  background: #fff;
}
.reviews__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.reviews__header {
  text-align: center;
  margin-bottom: 100px;
}
.reviews__title {
  font-size: 52px;
  font-weight: 700;
  color: #000;
  margin-bottom: 32px;
}
.reviews__subtitle {
  font-size: 24px;
  color: #000;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}
.reviews__partners-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.reviews__logo-item {
  background: #161a22;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.reviews__logo-item img {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.4s;
}
.reviews__logo-item:hover img {
  filter: grayscale(0%) opacity(1);
}
.reviews__slider-wrapper {
  position: relative;
}
.reviews__slider {
  overflow: hidden;
  border-radius: 16px;
}
.reviews__slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reviews__review-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #161a22;
  padding: 60px;
  box-sizing: border-box;
}
.reviews__review-scan {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.reviews__review-scan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews__review-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reviews__review-text p {
  font-size: 24px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 32px;
  font-style: italic;
}
.reviews__review-text strong {
  font-size: 20px;
  color: #d4a857;
  font-weight: 600;
}
.reviews__slider-prev,
.reviews__slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(212, 168, 87, 0.8);
  color: #0f1115;
  border: none;
  border-radius: 50%;
  font-size: 36px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}
.reviews__slider-prev {
  left: -30px;
}
.reviews__slider-next {
  right: -30px;
}
.reviews__slider-prev:hover,
.reviews__slider-next:hover {
  background: #d4a857;
}
@media (max-width: 1024px) {
  .reviews__partners-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews__slider-prev {
    left: -20px;
  }
  .reviews__slider-next {
    right: -20px;
  }
}
@media (max-width: 868px) {
  .reviews {
    padding: 100px 0;
  }
  .reviews__container {
    padding: 0 20px;
  }
  .reviews__header {
    margin-bottom: 80px;
  }
  .reviews__title {
    font-size: 42px;
  }
  .reviews__subtitle {
    font-size: 20px;
  }
  .reviews__partners-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .reviews__logo-item {
    padding: 24px;
  }
  .reviews__review-slide {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
  .reviews__review-text p {
    font-size: 20px;
  }
  .reviews__slider-prev,
  .reviews__slider-next {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  .reviews__slider-prev {
    left: 10px;
  }
  .reviews__slider-next {
    right: 10px;
  }
}

.comparison {
  padding: 140px 0;
  background: #161a22;
}
.comparison__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.comparison__title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 80px;
}
.comparison__table-wrapper {
  overflow-x: auto;
  margin-bottom: 60px;
}
.comparison__table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  background: #0f1115;
  border-radius: 16px;
  overflow: hidden;
}
.comparison__table th,
.comparison__table td {
  padding: 24px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.comparison__table th {
  background: #d4a857;
  color: #0f1115;
  font-weight: 600;
}
.comparison__table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}
.comparison__text {
  font-size: 24px;
  color: #fff;
  margin-bottom: 60px;
  font-weight: 600;
}
.comparison__btn {
  background: #d4a857;
  color: #fff;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.comparison__btn:hover {
  background: #f0c46a;
  color: #0f1115;
}

.prices {
  padding: 140px 0;
  background: #0f1115;
}
.prices__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.prices__title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 80px;
}
.prices__table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
}
.prices__table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  background: #161a22;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.prices__table th,
.prices__table td {
  padding: 24px;
  text-align: left;
  font-size: 18px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.prices__table th {
  background: rgba(212, 168, 87, 0.15);
  color: #d4a857;
  font-weight: 600;
}
.prices__table td:nth-child(4) {
  color: #d4a857;
  font-weight: 600;
}
.prices__conditions {
  margin-bottom: 80px;
}
.prices__conditions-title {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
}
.prices__conditions-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.prices__condition-item {
  background: #161a22;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  font-size: 20px;
  color: #b7bcc8;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.prices__condition-item span:first-child {
  display: block;
  font-size: 48px;
  margin-bottom: 16px;
}
.prices__seo-text {
  font-size: 20px;
  color: #fff;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
}
.prices__btn {
  background: #d4a857;
  color: #fff;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  display: block;
  margin: 0 auto;
}
.prices__btn:hover {
  background: #f0c46a;
  color: #0f1115;
}

@media (max-width: 1024px) {
  .prices__conditions-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 868px) {
  .comparison,
  .prices {
    padding: 100px 0;
  }
  .comparison__container,
  .prices__container {
    padding: 0 20px;
  }
  .comparison__title,
  .prices__title {
    font-size: 42px;
    margin-bottom: 60px;
  }
  .comparison__text,
  .prices__seo-text {
    font-size: 20px;
  }
  .prices__conditions-list {
    grid-template-columns: 1fr;
  }
  .prices__conditions-title {
    font-size: 32px;
  }
  .prices__condition-item {
    padding: 24px;
    font-size: 18px;
  }
}

.objects {
  padding: 140px 0;
  background: #fff;
}
.objects__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.objects__title {
  font-size: 52px;
  font-weight: 700;
  color: #000;
  margin-bottom: 80px;
}
.objects__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.objects__gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
}
.objects__gallery-item:hover {
  transform: translateY(-12px);
}
.objects__gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.objects__gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(15, 17, 21, 0.95),
    rgba(15, 17, 21, 0.4)
  );
  padding: 40px 32px 32px;
  color: #ffffff;
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
}
.objects__gallery-caption strong {
  font-size: 24px;
  display: block;
  margin-bottom: 0;
  color: #d4a857;
}
@media (max-width: 1024px) {
  .objects__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .objects__gallery-item img {
    height: 340px;
  }
}
@media (max-width: 868px) {
  .objects {
    padding: 100px 0;
  }
  .objects__container {
    padding: 0 20px;
  }
  .objects__title {
    font-size: 42px;
    margin-bottom: 80px;
  }
  .objects__gallery {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .objects__gallery-item img {
    height: 300px;
  }
  .objects__gallery-caption {
    padding: 32px 24px 24px;
    font-size: 17px;
  }
  .objects__gallery-caption strong {
    font-size: 22px;
  }
}

.faq {
  padding: 140px 0;
  background: #161a22;
}
.faq__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.faq__title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 100px;
}
.faq__list {
  max-width: 1000px;
  margin: 0 auto;
}
.faq__item {
  background: #0f1115;
  border-radius: 16px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}
.faq__item.active {
  background: rgba(212, 168, 87, 0.08);
  border-color: rgba(212, 168, 87, 0.3);
}
.faq__question {
  padding: 32px;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}
.faq__question::after {
  content: "+";
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #d4a857;
  transition: transform 0.4s ease;
}
.faq__item.active .faq__question::after {
  content: "−";
}
.faq__question:hover {
  background: rgba(255, 255, 255, 0.05);
}
.faq__answer {
  padding: 0 32px;
  font-size: 18px;
  color: #b7bcc8;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__item.active .faq__answer {
  max-height: 400px;
  padding-bottom: 32px;
}
@media (max-width: 868px) {
  .faq {
    padding: 100px 0;
  }
  .faq__container {
    padding: 0 20px;
  }
  .faq__title {
    font-size: 42px;
    margin-bottom: 80px;
  }
  .faq__question {
    font-size: 20px;
    padding: 24px;
  }
  .faq__question::after {
    right: 24px;
    font-size: 32px;
  }
  .faq__answer {
    font-size: 17px;
    padding: 0 24px;
  }
  .faq__item.active .faq__answer {
    padding-bottom: 24px;
  }
}

.contacts {
  padding: 140px 0;
  background: #0f1115;
}
.contacts__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.contacts__header {
  text-align: center;
  margin-bottom: 100px;
}
.contacts__title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
}
.contacts__subtitle {
  font-size: 24px;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
  transform: translateY(30px);
}
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 48px;
  opacity: 0;
  transform: translateY(40px);
}
.contacts__info-item p {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.6;
}
.contacts__info-item p strong {
  font-size: 24px;
  color: #d4a857;
  margin-bottom: 12px;
}
.contacts__info-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}
.contacts__info-item a:hover {
  color: #d4a857;
}
.contacts__messengers {
  display: flex;
  gap: 32px;
  margin-top: 12px;
}
.contacts__info-item strong {
  font-size: 24px;
  color: #d4a857;
  margin-bottom: 12px;
}
.contacts__messenger {
  font-size: 20px;
  color: #d4a857;
  text-decoration: none;
  padding: 12px 24px;
  background: rgba(212, 168, 87, 0.15);
  border-radius: 8px;
  transition: background 0.3s;
}
.contacts__messenger:hover {
  background: rgba(212, 168, 87, 0.3);
}
.contacts__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
}
.contacts__map img {
  display: block;
  width: 100%;
  height: 480px;
}
@media (max-width: 1024px) {
  .contacts__grid {
    gap: 60px;
  }
}
@media (max-width: 868px) {
  .contacts {
    padding: 100px 0;
  }
  .contacts__container {
    padding: 0 20px;
  }
  .contacts__header {
    margin-bottom: 80px;
  }
  .contacts__title {
    font-size: 42px;
  }
  .contacts__subtitle {
    font-size: 20px;
  }
  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contacts__info-item p {
    font-size: 20px;
  }
  .contacts__messenger {
    font-size: 18px;
    padding: 10px 20px;
  }
  .contacts__map iframe {
    height: 400px;
  }
}

/* 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/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, 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: #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;
  }
}
