* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  background: url('sfondo.jpg') center center / cover no-repeat fixed;
  position: relative;
  color: #ffffff;
}

.background-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 52, 0.50);
}

.wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.card {
  width: 100%;
  max-width: 720px;
  text-align: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 38px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.logo {
  width: 210px;
  max-width: 65%;
  height: auto;
  display: block;
  margin: 0 auto 18px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
}

.eyebrow {
  margin: 0 0 12px;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
}

h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.subtitle {
  margin: 14px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.contacts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
}

.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.linkedin-link,
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.linkedin-link:hover,
.download-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.linkedin-link {
  width: 52px;
  background: #0a66c2;
}

.linkedin-link svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.download-btn {
  padding: 0 24px;
  background: #0d86c8;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  h1 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 16px;
  }

  .contact-item {
    width: 100%;
  }

  .download-btn {
    width: 100%;
  }
}
