* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
  margin: 0;
}

@font-face {
  font-family: "Bebas Neue";
  src: url('../fonts/BebasNeueBook.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.header-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 20px; 
  gap: 12px; /* регулируй под желаемый отступ */
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end; /* прижимаем пункты вправо */
}

.header-nav li {
  white-space: nowrap;
  margin-right: 0;
  
}


body {
  font-family: "Noto Sans", sans-serif;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.navbar {
  display: flex;
  align-items: center;
  color: #fff;
  height: 94px;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  border-bottom: 1px solid rgba(235, 235, 240, 0.2);
  transition: background-color 0.2s,height 0.2s;
}
.navbar-light
{ background-color:#fff;
  color:#292d33;
  height: 72px;
}
.navbar-light .header-logo-path{
  fill:#292d33;
}

.header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 94px; /* учтена высота .navbar */
  position: relative;
}

.header-image {
  flex: 1;
  background-image: url("../img/header-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.header-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(41, 45, 51, 0.6);
  z-index: 0;
}

.header-logo {
  display: flex;
  align-items: center;
  padding: 0 50px;
  border-right: 1px solid rgba(235, 235, 240, 0.2);
  height: 100%;
}

.header-nav-link {
  text-decoration: none;
  font-size: 16px;
  /* margin-right: 42px; */
  margin-right: 0; /* убираем лишний отступ */
  color: inherit;
}
.header-phone {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: 50px;
}

.button {
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  color: #ffffff;
  background: #3a71d1;
  padding: 25px 60px;
  border: none;
  display: inline-block;
  cursor: pointer;
}
.navbar-button {
  flex-shrink: 0;
  height: 100%;

}
.header-button {
  height: 100%;
  align-self: flex-start; /* фиксирует кнопку слева */
  margin-top: 20px;
}

.separator {
  background: #5c8ee6;
  width: 150px;
  height: 2px;
}
.header-content,
.header-features {
  position: relative;
  z-index: 1;
  color: #fff;
}
.header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 150px;
}

 .header-features {
  display: flex;
  min-height: 168px;
  padding: 0;
  margin-top: 100px;
  list-style: none;
} 


.header-title {
  max-width: 1080px;
  font-family: 'Bebas Neue';
  font-size: 80px;
  line-height: 120%;
  margin: 30px 0;
}
.header-text {
  max-width: 720px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 50px;
}

.header-features-item {
  padding: 30px 50px;
  border: 1px solid rgba(235, 235, 240, 0.2);
}
.header-features-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
}
.header-features-item:not(:last-child) {
  border-right: none;
}
.section{
  margin-top: 150px;
  margin-bottom: 150px;
}

.section-title{
  font-family: 'Bebas Neue';
  font-size: 60px;
  line-height: 120%;
  margin: 50px 0;
  color: #292D33;
}
.steps{
  display: flex;
  list-style: none;
  padding: 0;
  gap: 30px;   
}
.steps-item{
  max-width: 330px;
}
.steps-num{
  font-family: 'Bebas Neue';
  font-size: 48px;
  line-height: 120%;
  color: #5c8ee6;
  display: flex;
  align-items: center;
}
.steps-num::after{
  content: "";
  height: 1px;
  background: #ebebf0;
  width: 100%;
  margin-left: 30px;
}
.steps-title{
  font-weight:400;
  font-size :28px;
  line-height:160%;
  color: #292d33;
  margin-top: 30px;
  margin: bottom 10px;
}
.steps-text{
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #828a99;
  margin-top: 10px;
  margin-bottom: 20px;
}
.steps-link{
  display:flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  color:#5c8ee6;
}
.steps-link::before{
  content: "";
  height: 1px;
  width: 40px;
  background: #5c8ee6;
  margin-right: 20px;
}










