/* ---------- RESET ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ---------- BACKGROUND ---------- */
body {
  background: url("img/bg-desktop.jpg") center / cover no-repeat;
  color: #ffffff;
}

/* ---------- HEADER ---------- */
.top {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-svg {
  width: 20px;
  height: auto;
  display: block;
}

.brand {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 5.28px;
}

.lang {
  font-weight: 600;
  font-size: 17px;
  opacity: 0.3;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* ---------- TITLE ---------- */
.hero h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 16px;
}

/* ---------- SUBTITLE ---------- */
.subtitle {
  font-size: 14px;
  letter-spacing: 0.42px;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 28px;
}

.subtitle strong {
  font-weight: 700;
}

/* ---------- CTA ---------- */
.cta {
  width: 314px;
  height: 65px;
  background: #ffffff;
  color: #141414;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.cta:hover {
  background: #f0f0f0;
}

/* ---------- SOCIALS ---------- */
.socials {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.socials img {
  width: 20px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.socials img:hover {
  opacity: 1;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  body {
    background: url("img/bg-mobile.jpg") center / cover no-repeat;
  }

  .hero h1 {
    font-size: 22px;
  }

  .cta {
    width: 100%;
    max-width: 314px;
  }
}
