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

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    background: #f7f7f4;
    color: #111;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  background: rgba(247, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 235px;
  height: 135px;
  display: block;
}

.header-phone {
  color: #111;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  transition: 0.2s ease;
}

.header-phone:hover {
  background: #111;
  color: #fff;
}

/* HERO */

.hero {
  padding: 72px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-badge {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -2px;
  font-weight: 900;
  max-width: 680px;
}

.hero-content h1 span {
  color: #ff5a00;
}

.hero-text {
  margin-top: 24px;
  max-width: 610px;
  font-size: 21px;
  line-height: 1.35;
  color: #333;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary {
  background: #ff5a00;
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 90, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #e64f00;
}

.btn-secondary {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.btn-secondary:hover {
  background: #111;
  color: #fff;
}

.hero-proof {
  margin-top: 22px;
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: #333;
}

.hero-proof strong {
  color: #111;
  font-size: 16px;
}

/* IMAGES */

.hero-images {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

.main-img {
  height: 330px;
}

.small-img {
  height: 230px;
}

/* MOBILE */

@media (max-width: 850px) {
  .header-inner {
    height: 66px;
  }

  .logo img {
     width: 140px;
    height: 95px;
  }

  .header-phone {
    font-size: 13px;
    padding: 10px 12px;
  }

  .hero {
    padding: 38px 0 54px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-badge {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .hero-content h1 {
    font-size: clamp(24px, 12vw, 36px);
    letter-spacing: -1.8px;
  }

  .hero-text {
    font-size: 18px;
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 54px;
  }

  .hero-proof {
    font-size: 13px;
  }

  .hero-images {
    gap: 12px;
  }

  .hero-img,
  .main-img,
  .small-img {
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }
}









