.header {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  margin: 0;
  min-height: 5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(1.25rem) saturate(180%);
  -webkit-backdrop-filter: blur(1.25rem) saturate(180%);
  box-shadow: 0 0.0625rem 0 rgba(0, 0, 0, 0.05), 0 0.5rem 2.5rem rgba(0, 0, 0, 0.08);
  border-bottom: none;
  box-sizing: border-box;
}

#header-container {
  all: unset;
  position: relative;
  z-index: 1000;
  width: 100%;
  margin: 0;
}

.header__inner {
  all: unset;
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
  padding: 0 2vw;
  min-height: 5rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: auto;
  white-space: nowrap;
}

.logo__name {
  font-weight: 800;
  font-size: 1.45rem;
  color: #051A61;
  margin: 0;
  line-height: 1.25;
  text-decoration: none;
  text-shadow: none;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

.logo__title {
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #2c2c2c;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding-bottom: 0;
  line-height: 1.25;
  text-decoration: none;
  text-shadow: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.5vw;
}

.header__contact {
  display: flex;
  gap: 1.5vw;
  font-style: normal;
  flex-direction: row;
}

.header__contact a {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: -0.01em;
  gap: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 0.375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: #082C99;
  color: #ffffff;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  background: #051A61;
}

@media (max-width: 838px) {
  .header {
    flex-direction: column;
    text-align: center;
    padding: 0.25rem 0 0;
  }
  
  .header__inner {
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    min-height: auto;
    width: 100%;
    box-sizing: border-box;
  }
  
  .logo {
    align-items: center;
  }
  
  .logo__name,
  .logo__title {
    text-align: center;
    width: 100%;
  }
  
  .logo__title {
    margin-top: 0.2rem;
  }
  
  .header__actions {
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.35rem;
  }
  
  .header__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0;
    width: 100%;
    margin-top: -0.15rem;
  }
  
  .header__contact a {
    font-size: 0.9rem;
    line-height: 1;
    display: flex;
    align-items: center;
    font-weight: 500;
    letter-spacing: -0.01em;
    gap: 0.5rem;
    white-space: nowrap;
  }
  
  .btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.9rem;
  }
}

@media (max-width: 40rem) {
  .logo__name {
    font-size: 1.2rem;
    padding: 0.35rem 0 0.35rem;
  }
  
  .logo__title {
    font-size: 0.7rem;
    margin-top: 0;
  }
  
  .header__inner {
    padding-bottom: 0.35rem;
  }
  
  .btn {
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
  }
}
