/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #0e0e0e;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

/* ---------------- CENTER WRAPPER ---------------- */
.wrapper {
  display: flex;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: 1400px;   /* одинаково выглядит на 16:9 и 32:9 */
  padding: 120px 60px;
}

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px),
    rgba(0,0,0,0.5);
  background-size: 4px 4px;
}

/* Scroll */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-hint .arrow {
  margin: 10px auto 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

/* ---------------- TYPOGRAPHY FIX ---------------- */
/* фиксированный масштаб — одинаково на 16:9 и 32:9 */

h1 {
  font-size: 42px;
  margin-bottom: 25px;
}

h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: #d0d0d0;
}

/* ---------------- CONTENT BLOCKS ---------------- */

.content-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.text-left {
  flex: 1;
  max-width: 650px;
}

/* ---------------- ICONS FIX ---------------- */

.overview-icons {
  display: flex;
  gap: 50px;
  align-items: center;
}

.icon-card {
  display: flex;
  flex-direction: column;   /* ГЛАВНОЕ — текст ПОД иконкой */
  align-items: center;
  text-align: center;
  width: 140px;
}

.icon-card img {
  width: 70px;
  margin-bottom: 14px;
}

.icon-card span {
  font-size: 16px;
  color: #cccccc;
}

/* ---------------- RIGHT IMAGE ---------------- */

.image-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.image-right img {
  width: 520px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ---------------- DIVIDER ---------------- */

.divider {
  width: 60%;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 100px auto;
}

/* ---------------- BUTTONS ---------------- */

.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  padding: 14px 28px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* ---------------- FOOTER ---------------- */

.footer {
  display: flex;
  justify-content: center;
  background: #090909;
  padding: 80px 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
  max-width: 1400px;
  width: 100%;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 15px;
  color: #b5b5b5;
  line-height: 1.6;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1100px) {

  .content-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-right {
    justify-content: center;
  }

  .image-right img {
    width: 100%;
  }

  .overview-icons {
    flex-wrap: wrap;
    gap: 30px;
  }
}
