.about-hero {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
  font-family: var(--font-main);
  background-color: var(--text-dark);
}

.about-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.about-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-hero__title {
  font-size: 64px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
}

.about-hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  max-width: 780px;
}

.about-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.about-hero__btn:hover {
  background-color: var(--bg-light);
  transform: translateY(-1px);
}

.about-section {
  padding: 80px 60px;
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  gap: 64px;
  font-family: var(--font-main);
}

.about-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.about-intro__text {
  max-width: 636px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-intro__heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.about-intro__body {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-intro__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-shrink: 0;
}

.stat-card {
  width: 201px;
  min-height: 214px;
  padding: 28px 16px;
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.stat-card__number {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}

.stat-card__label {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.about-subsection {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-subsection__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
}

.about-subsection__body {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-list__item {
  position: relative;
  padding-left: 22px;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}

.product-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--text-muted);
}

.product-list__closing {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 4px;
}

.why-burmas {
  padding: 80px 60px;
  background-color: var(--bg-light);
  display: flex;
  flex-direction: column;
  gap: 48px;
  font-family: var(--font-main);
}

.why-burmas__title {
  font-size: 48px;
  font-weight: 500;
  color: var(--text-dark);
}

.why-burmas__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.reason-card {
  padding: 32px 24px;
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reason-card__icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.reason-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.reason-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.reason-card__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

.reason-card__desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.showroom-gallery {
  padding: 48px 60px 80px;
  background-color: var(--bg-white);
}

.showroom-gallery__stage {
  position: relative;
  width: 100%;
  height: 601px;
  border-radius: 12px;
  overflow: hidden;
}

.showroom-gallery__stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showroom-gallery__stage::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
  pointer-events: none;
  z-index: 1;
}

.showroom-gallery__thumbnails {
  position: absolute;
  left: 50%;
  bottom: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 12px;
  z-index: 2;
}

.showroom-gallery__thumb {
  width: 148px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  opacity: 0.92;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.showroom-gallery__thumb:nth-child(2) {
  width: 164px;
  height: 98px;
}

.showroom-gallery__thumb.is-active {
  opacity: 1;
  border-color: #ffffff;
}

.showroom-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showroom-gallery__nav {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.showroom-gallery__arrow {
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.showroom-gallery__arrow svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.8;
}

.showroom-gallery__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.showroom-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.showroom-gallery__dot.is-active {
  background-color: #ffffff;
  transform: scale(1.25);
}

@media (max-width: 1200px) {
  .why-burmas__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-card {
    width: 170px;
    min-height: 190px;
  }

  .about-hero__title {
    font-size: 44px;
  }
}

@media (max-width: 1024px) {
  .about-hero {
    height: 480px;
    padding: 64px 32px;
  }

  .about-section,
  .why-burmas {
    padding: 60px 32px;
  }

  .about-intro {
    flex-direction: column;
    gap: 32px;
  }

  .about-intro__stats {
    width: 100%;
  }

  .stat-card {
    flex: 1;
    width: auto;
  }

  .why-burmas__title {
    font-size: 36px;
  }

  .showroom-gallery {
    padding: 40px 32px 60px;
  }

  .showroom-gallery__stage {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 420px;
    padding: 48px 20px;
  }

  .about-hero__title {
    font-size: 32px;
  }

  .about-hero__subtitle {
    font-size: 15px;
  }

  .about-section {
    padding: 40px 20px;
    gap: 40px;
  }

  .about-intro__stats {
    flex-direction: column;
  }

  .stat-card {
    width: 100%;
    min-height: 160px;
  }

  .about-subsection__title {
    font-size: 22px;
  }

  .about-subsection__body,
  .product-list__item,
  .product-list__closing,
  .about-intro__body {
    font-size: 16px;
  }

  .why-burmas {
    padding: 40px 20px;
  }

  .why-burmas__title {
    font-size: 28px;
  }

  .why-burmas__cards {
    grid-template-columns: 1fr;
  }

  .showroom-gallery {
    padding: 24px 20px 48px;
  }

  .showroom-gallery__stage {
    height: 280px;
  }

  .showroom-gallery__thumbnails {
    display: none;
  }
}
