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

html,
body {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
}

/* ─── Hero ─────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background-image: url('assets/images/bg.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 32, 18, 0.32);
}

/* ─── Content ───────────────────────────────────────── */

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 74px 172px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 90px;
}

/* ─── Logo ──────────────────────────────────────────── */

.hero__logo {
  width: 100%;
  max-width: 771px;
  height: auto;
}

/* ─── Address pill ──────────────────────────────────── */

.hero__address {
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 100px;
  padding: 20px 48px;
  width: 100%;
  line-height: 1.55;
  font-size: 32px;
}


.hero__address p + p {
  font-weight: 600;
}

/* ─── Social block ───────────────────────────────────── */

.hero__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__social p {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.hero__social strong {
  font-weight: 700;
}

/* ─── CTA button ────────────────────────────────────── */

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #144734;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 500;
  padding: 15px 36px;
  border-radius: 100px;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  position: absolute;
  top: calc(100% - 32px);
}

.hero__btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hero__btn:active {
  opacity: 1;
  transform: translateY(0);
}

.hero__btn img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ─── Large (≤ 1200px) ──────────────────────────────── */

@media (max-width: 1200px) {
  .hero__address {
    font-size: 24px;
  }

  .hero__social p {
    font-size: 24px;
  }

  .hero__btn {
    font-size: 24px;
  }
}

/* ─── Medium (≤ 1024px) ──────────────────────────────── */

@media (max-width: 1024px) {
  .hero__address {
    font-size: 20px;
  }

  .hero__social p {
    font-size: 20px;
  }
}

/* ─── Tablet (≤ 768px) ──────────────────────────────── */

@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
  }

  .hero__content {
    gap: 50px;
    max-width: 100%;
    padding: 48px 60px;
    border-radius: 55px;
  }

  .hero__address {
    padding: 18px 32px;
  }

  .hero__social p {
    font-size: 13px;
  }

  .hero__btn {
    font-size: 13px;
    padding: 14px 30px;
  }
}

/* ─── Mobile (≤ 480px) ──────────────────────────────── */

@media (max-width: 480px) {
  .hero {
    padding: 32px 16px;
  }

  .hero__content {
    gap: 50px;
    padding: 54px 16px;
  }

  .hero__logo {
    max-width: 300px;
  }

  .hero__address {
    padding: 14px 11px;
    border-radius: 60px;
    text-align: center;
  }

  .hero__address p {
    font-size: 14px;
    max-width: 220px;
    margin: 0 auto;
  }

  .hero__address p + p {
    font-size: 12px;
    max-width: 100%;
  }

  .hero__social p {
    font-size: 13px;
  }

  .hero__btn {
    font-size: 14px;
    padding: 13px 26px;
    gap: 8px;
  }

  .hero__btn img {
    width: 20px;
    height: 20px;
  }
}
