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

body {
  background: #dcdcdc;
  font-family: 'Courier New', monospace;
}

/* центрируем страницу */
.page {
  max-width: 1200px;
  margin: 0 auto;
}

/* HERO = картинка как макет */
.hero {
  position: relative;
  width: 100%;
  height: 700px;

  background: url("img/hero-sketch.png") center/contain no-repeat;
  background-color: #fff;

  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* overlay для позиционирования */
.overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

/* TITLE (как на макете сверху) */
.title {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 42px;
  letter-spacing: 3px;
}

/* меню */
.menu {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}

.menu a {
  margin: 0 15px;
  text-decoration: none;
  color: #222;
  font-size: 14px;
}

/* CTA блоки (позиции подгоняются под макет) */
.cta {
  position: absolute;
  width: 220px;
  text-align: center;
  border: 1px solid #444;
  padding: 15px;
  background: rgba(255,255,255,0.6);
}

/* левый блок */
.cta.left {
  bottom: 60px;
  left: 280px;
}

/* правый блок */
.cta.right {
  bottom: 60px;
  right: 280px;
}

/* текст */
.cta h3 {
  font-size: 14px;
  margin-bottom: 5px;
}

.cta p {
  font-size: 12px;
  margin-bottom: 10px;
}

/* кнопки */
.cta button {
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid #444;
  background: transparent;
  cursor: pointer;
}

.cta button:hover {
  background: #222;
  color: #fff;
}

/* footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #555;
}
