body {
  padding: 0;
  margin: 0;
  position: relative;
  max-width: 100vw;
  font-family: 'Oswald', sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}
     
.header {
  width: 100%;
  max-width: 100vw;
  position: fixed;
  height: 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.45);
  box-shadow: none;
  top: 0;
  left: 0;
  z-index: 15;
  >img,
  >.logo-link {
    max-width: 80px;
    margin: 0 10px;
  }
  >.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  >.logo-link .logo {
    max-width: 80px;
    height: auto;
  }
  >div,
  >nav {
    padding: 0 20px;
    width: calc(60% - 80px);
    display: flex;
    flex-direction: row;
    color: white;
    align-items: center;
    >a {
      color: white;
      text-decoration: none;
      font-size: 18px;
      cursor: pointer;
    }
    >a:hover {
      color: #00E016;
      
    }
  }
  >.header-left-nav {
    justify-content: start;
    >a {
      margin-right: 30px;
    }
  }
  >.header-right-nav {
    justify-content: end;
    >a {
      margin-left: 30px;
    }
  }
}


.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  margin-right: 20px;
}

.burger span {
  width: 25px;
  height: 3px;
  background-color: #00E016;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Стилі мобільного меню */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 45vw;
  max-width: 320px;
  height: 100%;
  background-color: #121B19;
  color: white;
  padding: 20px;
  z-index: 19;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-transform: uppercase;
  transition: right 0.3s ease;
}

.mobile-menu.active {
  right: 0;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-direction: column;
}

.mobile-menu-header a {
  display: flex;
  justify-content: center;
}

.mobile-menu-header img,
.mobile-menu-header .logo {
  margin-top: 50px;
  max-width: 80px;
  justify-self: start;
}

.mobile-menu-nav a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-nav a:hover {
  color: #00E016;
}

 
@media (max-width: 960px) {

  .header {
    justify-content: end;
    align-items: center;
    .logo-link,
    .logo-link .logo {
      display: none;
    }
    >.header-right-nav {
      display: none;
    }
    >.header-left-nav {
      display: none;
   }
  }
  .burger {
    display: flex;
  }

  .mobile-menu-header .logo {
    display: block;
  }
 
}

@media (max-width: 720px) {
  /* стилі для екранів до 720px */
}.intro {
  position: relative;
  min-height: 500px;
  background-image: url(../images/intro.jpg);
  background-size: cover;
  padding: 180px 30px 90px 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  >div {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: white;
    font-size: 22px;
    line-height: 30px;
    >img {
      width: 600px;
      height: 300px;
    }
  }

  >.intro-right-container {
    align-items: end;
    justify-content: center;
  }
}

.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35); /* затемнення на 0.15 */
  z-index: 1;
}

.intro > * {
  position: relative;
  z-index: 2; /* щоб контент був поверх затемнення */
}

.intro-text-container {
  margin-top: 200px;
  width: 100%;
}

.intro-btn-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
}

.intro-btn-1 {
  color: #d04b00;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Oswald', Arial, sans-serif;
  line-height: 1.15;
  font-weight: 400;
  border: 3px solid #d04b00;
  background-color: #d04c001c;
  padding: 0;
  width: 230px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
  padding: 5px;
}

.intro-btn-1:hover {
   
  box-shadow: 0 6px 14px rgba(255, 94, 0, 0.5), 0 3px 6px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.intro-btn-2 {
  text-decoration: none;
  color: white;
  background-color: #d04b00;
  font-size: 20px;
  font-family: 'Oswald', Arial, sans-serif;
  line-height: 1.15;
  font-weight: 400;
  border: 3px solid #d04b00;
  width: 230px;
  max-height: 60px;
  margin-left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(208, 75, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.intro-btn-2:hover {
  background-color: #ff5e00;
  border-color: #ff5e00;
  box-shadow: 0 6px 14px rgba(255, 94, 0, 0.5), 0 3px 6px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.intro-img2 {
  display: none;
}

@media (max-width: 960px) {
  
  .intro {
    background-position: center;
    >div {
      justify-content: center;
      align-items: center;
    }
  }

  .intro-text-container {
    text-align: center;
  }

  .intro-img2 {
    display: block;
    max-width: 80%;
  }

  .intro-img1 {
    display: none;
  }

  .intro {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 130px;
  }

  .intro-right-container {
    max-width: 500px;
  }

  .intro-text-container {
    margin-top: 100px;
  }
}

@media (max-width: 720px) {

  .intro {
    padding-top: 50px;
  }

  .intro-text-container {
    margin-top: 30px;
  }
  .intro-btn-container {
    margin-top: 55px;
    flex-direction: column;
    align-items: center;
  }

  .intro-btn-1 {
    display: none;
  }

  .intro-btn-2 {
    height: 30px;
  }
}
.advantages {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #121B19, #121B19, #121B19, #2C4545); /* фон */
  padding: 90px 20px;
  color: white;
  overflow: hidden; /* щоб фон не вилазив за межі */
}

.advantages-bg {
  position: absolute;
  top: -300px;
  right: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.2; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.advantages-bg-2 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 500px;
  height: 500px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.35; /* якщо треба трохи затемнити */
  z-index: 3; /* фон під контентом */
}

.advantages-bg-3 {
  position: absolute;
  bottom: 0px;
  left: -300px;
  width: 600px;
  height: 600px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.25; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}


.advantages-content {
  width: 100%;
  position: relative;
  z-index: 4; /* контент над фоном */
}

.advantages-title {
  display: flex;
  font-size: 50px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  min-height: 150px;
  background-image: url(../images/advantagesBG.webp);
  background-size: 630px 143px;
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: -10%;
}

.advantages-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  >.advantages-item-container {
   width: 50%;
   min-height: 150px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   text-align: start;
    
  }
}
 

.advantages-container.advantages-item-right {
  justify-content: end;
}

#advantages-container-1,#advantages-container-2,#advantages-container-3,#advantages-container-4,#advantages-container-5,#advantages-container-6,#advantages-container-7 {
  background-image: url(../images/01.png.webp);
  background-repeat:  no-repeat;
  background-position-x: calc(50% - 395px);
  background-size: 150px ;

}

#advantages-container-2 {
  background-image: url(../images/02.png.webp);
  background-position-x: calc(50% + 200px);

}
#advantages-container-3 {
  background-image: url(../images/03.png.webp);
}
#advantages-container-4 {
  background-image: url(../images/04.png.webp);
    background-position-x: calc(50% + 200px);

}
#advantages-container-5 {
  background-image: url(../images/05.png.webp);
}
#advantages-container-6 {
  background-image: url(../images/06.png.webp);
    background-position-x: calc(50% + 200px);

}
#advantages-container-7 {
  background-image: url(../images/07.png.webp);
}

.advantages-item-title {
  width: 350px;
  font-size: 30px;
  font-weight: 400;
  padding: 50px 0 0 30px;
  max-width: 450px;
}

.advantages-item-text {
  font-size: 24px;
  font-weight: 400;
  padding: 20px 0 0 30px;
  max-width: 450px;

  >span {
    color: #87e37b;
  }
}

.advantages-item-right {
  >div {
    >.advantages-item-title {  
      padding: 50px 0 0 210px;
    }
    
    >.advantages-item-text { 
      padding: 20px 0 0 210px;
    }
  }
}

@media (max-width: 1600px) {
  #advantages-container-1,#advantages-container-3,#advantages-container-5,#advantages-container-7 {
    background-position-x: calc(20%);  
  }
}

@media (max-width: 980px) {

  #advantages-container-1,#advantages-container-2,#advantages-container-3,#advantages-container-4,#advantages-container-5,#advantages-container-6,#advantages-container-7 {
    background-position-x: 30%;
    background-size: 100px 110px;
  }

  .advantages-container.advantages-item-right,.advantages-container {
    justify-content: center;
    margin: 40px 0;
    width: 100%;
  }

  .advantages-item-title {
    font-size: 24px;
    padding: 20px 0 0 110px;
    width: 100%;
    max-width: 390px;
  }

  .advantages-item-text {
    font-size: 18px;
    padding: 20px 0 0 0px;
    width: 100%;
  }

  .advantages-item-container {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .advantages-item-right {
    >div {
      >.advantages-item-title {  
        padding: 20px 0 0 110px;
        width: 100%;
      }
      
      >.advantages-item-text { 
        padding: 20px 0 0 0px;
      }
    }
  }

  .advantages-title {
    line-height: 1.1;
    font-size: 44px;
    background-size: contain;
  }
}

@media (max-width: 720px) {

  #advantages-container-1,#advantages-container-2,#advantages-container-3,#advantages-container-4,#advantages-container-5,#advantages-container-6,#advantages-container-7 {
    background-position-x: 0;
    background-size: 100px 110px;
  }

  .advantages {
    padding: 40px 20px; 
  }
  
  .advantages-container {
    >.advantages-item-container {
        width:100%;
    }
  }
  #advantages-container-6>.advantages-item-container>.advantages-item-title {
    padding: 20px 0 0 50px;
    max-width: 280px;
  }
}.selection-auto {
  background-color: #112929;
  background: linear-gradient(to bottom, #2C4545,#112929, #112929); /* фон */
  color: #ffffff;
  padding: 40px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* щоб фон не вилазив за межі */
  position: relative;
}

.selection-auto-wrapper {
  max-width: 790px;
  z-index: 3;
}

.selection-auto-title {
  z-index: 3;
  font-size: 50px;
  line-height: 1.75;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  text-align: center;
  height: 147px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url(../images/selectION.webp);
  background-position: center center;
  background-size: 700px 140px;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}

.selection-auto-subtitle {
  z-index: 3;
  font-size: 26px;
  color: #87e37b;
  text-align: center;
  line-height: 1.75;
  font-weight: 400;
}

.selection-auto-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.form.main-form {
  position: relative;
  z-index: 3;
}

.selection-auto-list-title {
  font-size: 24px;
  position: relative;
  z-index: 3;
  margin-bottom: 20px;
  width: 100%;
  text-align: start;
}

.selection-auto-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  >img {
    margin: 15px;
    cursor: pointer;
    width: 160px;
    height: 160px;
  }
}

.active-item {
  border: 2px solid #00e0167d;
  border-radius: 50px;
  box-shadow: 0 0 10px #00e016;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.selection-auto-fuel-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#auto-fuel-item-1,#auto-fuel-item-2,#auto-fuel-item-3 {
  width: 250px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d04c001c;
  margin: 0 10px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid white;
}

.active-fuel {
  background-color: #d04b00;
  color: white;
  border: 2px solid #ffffff;
  box-shadow: 0 0 10px #00e016;
  transform: scale(1.05);
  transition: all 0.3s ease;
}


.budget-range-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0;
}

.budget-range-wrapper {
  position: relative;
  min-width: 100%;
  max-width: 320px;
}

.range-value {
  position: absolute;
  top: -15px;
  left: 0px;
  transform: translateX(-50%);
  background: white;
  color: #000;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  pointer-events: none;
}

.budget-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #00e016 0%, #ffffff 0%);
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  margin-top: 30px;
}

.budget-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 2px solid #00e016;
  box-shadow: 0 0 5px #00e016;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  position: relative;
  z-index: 2;
}

.budget-range::-webkit-slider-thumb:hover {
  background: #00e016;
  transform: scale(1.1);
}

.budget-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 2px solid #00e016;
  box-shadow: 0 0 5px #00e016;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.budget-range::-moz-range-thumb:hover {
  background: #00e016;
  transform: scale(1.1);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
  color: white;
}

.main-form__input {
  width: 100%;
  margin-bottom: 15px;
}

.form__input {
  width: calc(100% - 30px);
  height: 60px;
  padding: 0 15px;
  font-size: 22px;
  border: none;
  border-radius: 5px;
}

.form__input:focus {
  border:none
}

.buttonSend {
  background-color: #d04b00;
  width: 100%;
  height: 60px;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 6px 14px rgba(255, 94, 0, 0.5), 0 3px 6px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
  cursor: pointer;
  margin-top: 30px;
}

.main-form__button {
  width: 100%;
}

.iti {
  width: 100%;
}

.number-input {
  width: 100%;
}

.iti__selected-dial-code { 
  color: black;
}

.error-message {
  margin-top: 5px;
}

.selection-auto-bg {
  position: absolute;
  top: -300px;
  right: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.2; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.selection-auto-bg-2 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 500px;
  height: 500px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.35; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.selection-auto-bg-3 {
  position: absolute;
  bottom: 0px;
  right: -300px;
  width: 600px;
  height: 600px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.55; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

 

@media (max-width: 980px) {

  .selection-auto-title {
    font-size: 44px;
  }

  .selection-auto-subtitle {
    font-size: 20px;
  }

  .selection-auto-wrapper {
    max-width: 100%;
  }

  .selection-auto-list {
    justify-content: space-evenly;
  }

  .selection-auto-fuel-list {
    display: flex;
    flex-wrap: wrap;
  }

  #auto-fuel-item-1,#auto-fuel-item-2,#auto-fuel-item-3 {
    margin-top: 20px;
   }
}

@media (max-width: 720px) {
  #advantages-container-1,#advantages-container-3,#advantages-container-5,#advantages-container-7 {
    background-position-x: calc(20%);  
  }

  .budget-range-wrapper {
    min-width: 85%;
    max-width: 90%;

    width: 100%;
    >input {
      /* max-width: 92%; */
      align-self: center;
    }
  }

  .selection-auto-list {
    >img {
      max-width: 140px;
      max-height: 140px;
    }
  }

  .selection-auto-title {
    background-size: contain;
  }
}.buying {
  color: white;
  background: linear-gradient(to bottom,#112929, #112929, #2C4545); 
  padding: 60px 15px;
  overflow: hidden;  
  position: relative;
}

.buying-title {
  z-index: 3;
  font-size: 50px;
  line-height: 1.75;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  text-align: center;
  height: 147px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url(../images/buy_auto.png.webp);
  background-position: center left;
  background-size: 700px 140px;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  position: relative;
}

.buying-cards-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 3;
  position: relative;
}

.buying-card {
  width: 394px;
  height: 244px;
  background-image: url(../images/Rectangle_69.png.webp);
  background-size: 100% 100%;
  padding: 40px;
  z-index: 3;
  position: relative;
}

.buying-card-top {
  display: flex;
  flex-direction: row;
  align-items: center;
}


.buying-card-number {
  color: #00e016;
  font-size: 50px;
  font-family: 'Oswald', Arial, sans-serif;
  line-height: 1.5;
  font-weight: 300;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  margin-right: 5px;
}

.buying-card-title {
  color: #87e37b;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 256px;
}

.buying-card-bottom {
  font-size: 20px;
  font-weight: 400;
  max-width: 300px;
  margin-top: 10px;
}

.buying-bg {
  position: absolute;
  bottom: -300px;
  right: -320px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.2; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.buying-bg-2 {
  position: absolute;
  bottom: -200px;
  left: 0px;
  width: 500px;
  height: 500px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.85; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.buying-bg-3 {
  position: absolute;
  top: 150px;
  left: -150px;
  width: 600px;
  height: 600px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.25; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}


@media (max-width: 960px) {
  .buying-bg {
    bottom: -300px;
    right: 0px;
  }
  
  .buying-bg-2 {
    position: absolute;
    bottom: -100px;
    left: 0px;
    width: 500px;
    height: 500px;
  }
  
  .buying-bg-3 {
    position: absolute;
    top: 150px;
    left: -150px;
    width: 600px;
    height: 600px;
    object-fit: cover; /* картинка розтягується */
    opacity: 0.25; /* якщо треба трохи затемнити */
    z-index: 0; /* фон під контентом */
  }
  
}

@media (max-width: 720px) {
  .buying-title {
    font-size: 40px;
    background-size: contain;
    background-position: bottom;
  }
}.catalog {
  color: white;
  background: linear-gradient(to bottom, #2C4545,#112929, #2C4545); 
  padding: 60px 15px;
  overflow: hidden;  
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.catalog-title {
  z-index: 3;
  font-size: 50px;
  line-height: 1.75;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  height: 147px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.catalog-cards-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  justify-content: center;
  align-items: center;
}

.catalog-card {
  position: relative;
  border-radius: 15px;
  z-index: 5;
  max-width: 380px;
  height: 450px;
  margin: 15px;
  background-color: #00000050;
  overflow: hidden;
}

.swiper.card-swiper {
  max-height: 350px;
}

.swiper-slide {
  >img { 
    max-width: 100%;
    max-height: 100%;
  }
}

.catalog-card-container {
  padding: 15px;
}

.catalog-card-title {
  font-weight: 600;
  font-size: 18px;
}

.catalog-card-text {
  font-size: 16px;
  margin: 15px 0;
}

.catalog-card-price {
  font-size: 20px;
  color: #00E016;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  color: #00E016;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  color: #00E016;
}

.catalog-btn {
  color: #d04b00;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Oswald', Arial, sans-serif;
    line-height: 1.15;
    font-weight: 400;
    border: 3px solid #d04b00;
    background-color: #d04c001c;
    padding: 0;
    width: 230px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px;
    margin-top: 40px;
}

.catalog-bg {
  position: absolute;
  top: -300px;
  right: -320px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.2; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.catalog-bg-2 {
  position: absolute;
  bottom: -300px;
  left: 0px;
  width: 500px;
  height: 500px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.85; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.catalog-bg-4 {
  position: absolute;
  top: -300px;
  left: 0px;
  width: 500px;
  height: 500px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.85; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.catalog-bg-3 {
  position: absolute;
  bottom: 150px;
  left: -150px;
  width: 600px;
  height: 600px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.25; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

@media (max-width: 720px) {
  .catalog-card {
    max-width: 360px;
  }

  .catalog-bg {
    bottom: -300px;
    right: 0px;
  }
  
  .catalog-bg-2 {
    position: absolute;
    bottom: -100px;
    left: 0px;
    width: 500px;
    height: 500px;
  }
  
  .catalog-bg-3 {
    position: absolute;
    top: 150px;
    left: -150px;
    width: 600px;
    height: 600px;
    object-fit: cover; /* картинка розтягується */
    opacity: 0.25; /* якщо треба трохи затемнити */
    z-index: 0; /* фон під контентом */
  }
}





.credit {
  color: white;
  background: linear-gradient(to bottom,#2C4545, #112929, #112929,#112929, #2C4545); 
  padding: 60px 15px;
  overflow: hidden;  
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.credit-bg {
  position: absolute;
  bottom: -300px;
  right: -320px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.2; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.credit-bg-2 {
  position: absolute;
  top: -300px;
  left: 0px;
  width: 500px;
  height: 500px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.85; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.credit-bg-3 {
  position: absolute;
  bottom: 150px;
  left: -150px;
  width: 600px;
  height: 600px;
  object-fit: cover; /* картинка розтягується */
  opacity: 0.25; /* якщо треба трохи затемнити */
  z-index: 0; /* фон під контентом */
}

.credit-title {
  z-index: 3;
  font-size: 50px;
  line-height: 1.75;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  height: 147px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url(../images/credit.png.webp);
  background-position: center;
  background-size: 700px 140px;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  position: relative;
}

.credit-text {
  z-index: 3;
  font-size: 24px;
  line-height: 1.75;
  font-weight: 400;
  text-transform: uppercase;
  text-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin-top: 10px;
  position: relative;
  z-index: 5;
}

.credit-subtitle {
  z-index: 3;
  font-size: 26px;
  line-height: 1.75;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: #87e37b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 830px;
  margin: 30px 0;
  position: relative;
  z-index: 5;
}

.credit-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1000px;
  position: relative;
  z-index: 5;
}

.credit-card {
  position: relative;
  z-index: 5;
  max-width: 230px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px;
  text-transform: uppercase;
  text-align: center;

  >img {
    margin-bottom: 8px;
    width: 50px;
  }
}

.credit-card-title {
  color: white;
  font-size: 24px;
}


@media (max-width: 960px) {
  .credit-bg {
    bottom: -300px;
    right: 0px;
  }
  
  .credit-bg-2 {
    position: absolute;
    bottom: -100px;
    left: 0px;
    width: 500px;
    height: 500px;
  }
  
  .credit-bg-3 {
    position: absolute;
    top: 150px;
    left: -150px;
    width: 600px;
    height: 600px;
    object-fit: cover; /* картинка розтягується */
    opacity: 0.25; /* якщо треба трохи затемнити */
    z-index: 0; /* фон під контентом */
  }
  
}

@media (max-width: 720px) {
  .credit-title {
    font-size: 40px;
    background-size: contain;
    background-position: bottom;
  }

  .credit-text {
    font-size: 18px;
  }

  .credit-subtitle {
    font-size: 28px; 
  }
}

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

.faq-question {
  text-transform: uppercase;
}

.faq {
  color: white;
  background: linear-gradient(to bottom,#2C4545, #112929, #112929,#112929, #2C4545); 
  padding: 60px 15px;
  overflow: hidden;  
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.faq-title {
  z-index: 3;
  font-size: 50px;
  line-height: 1.75;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  height: 147px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url(../images/questions.png.webp);
  background-position: center;
  background-size: 700px 140px;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  position: relative;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  padding: 1rem;
  background: transparent;
  border-bottom: 1px solid #87e37b;
  transition: background 0.3s ease;
}

.faq-question > a {
  text-decoration: none;
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 1rem;
}

.faq-item.active .faq-answer {
  padding: 1rem;
  max-height: 500px; /* достатньо для великих відповідей */
}

.faq-item > a {
  padding: 1rem;
  max-height: 500px; /* достатньо для великих відповідей */
}


.faq-wrapper {
  max-width: 960px;

  >form {
    margin-top: 30px;
  }
}

body {
  padding: 0 !important;
  margin: 0 !important;
}


@media (max-width: 720px) {
  .faq-title {
    font-size: 40px;
    background-size: contain;
    background-position: bottom;
  }
}.contacts {
  color: white;
  background: linear-gradient(to bottom,#2C4545); 
  padding: 60px 15px;
  overflow: hidden;  
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.contacts-title {
  z-index: 3;
  font-size: 50px;
  line-height: 1.75;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  height: 147px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url(../images/contacts_1.png.webp);
  background-position: left;
  background-size: 700px 140px;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  position: relative;
}

.contacts-wrapper {
  max-width: 960px;
  width: 100%;
}

.contacts-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  align-items: center;
  text-align: center;
}

.contacts-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  >img {
    width: 44px;
  }
}

.contacts-text1 {
  font-size: 20px;
  font-weight: 400;
}

.contacts-text2 {
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  color: white;
}

.contacts-sm {
  display: flex;
  flex-direction: column;
  >div {
    display: flex;
    flex-direction: row;
    font-size: 30px;
    >a {
      >img {
        margin: 15px;
        width: 50px;
      }
    }
  }
}



@media (max-width: 960px) {
  .contacts-title {
    font-size: 40px;
    background-size: contain;
    background-position: top;
  }

  .contacts-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contacts-phone,.contacts-sm {
    margin: 25px 20px;
  }
}.reviews {
  color: white;
  background: linear-gradient(to bottom, #2C4545);
  padding: 60px 15px;
  overflow: hidden;
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

p {
  text-align: center;
}

.reviews-slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
}

/* 🔥 головне */
.review-card {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
}

.review-card-inner {
  width: 100%;
  max-width: 500px; /* ← обмеження */
  background: #fff;
  color: #111;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-align: center;
}

.video-preview {
  position: relative;
  cursor: pointer; 
}

video {
  max-height: 350px;
}

.video-preview img {
  width: 100%;
  border-radius: 12px;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
}

.review-card h3 {
  margin: 15px 0 5px;
}

.review-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* кнопки */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.prev { left: 0px; }
.next { right: 0px; }

.video-preview {
  position: relative;
  cursor: pointer;
}

.video-preview img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
}



@media (max-width: 760px) {
  .prev,.next {  
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
  }
}.footer {
  background-color: #112929;
  color: white;
  padding: 50px 15px 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.footer-details {
  margin-top: 30px;
}

.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
}

.footer-wrapper >div {
    display: flex;
    flex-direction: column;
}

.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
}

.footer-wrapper>div >a {
  color: white;
  text-decoration: none;
  margin-top: 5px;
}

.footer-wrapper >div >a &:link,&:visited,&:hover,&:active {
  color: white;
  text-decoration: none;    
}

.footer-title {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

@media (max-width: 960px) {
  .footer {
    background-color: #112929;
    color: white;
    padding: 40px 15px 15px 30px;
  }

  .footer-wrapper {
    flex-direction: column;
  }

  .footer-wrapper  >div {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2C4545;
  }
  .footer-wrapper >:last-child {
    border: none;
  }
}.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Лише скидання відступів браузера для семантичних тегів — без font-size/weight */
main h1,
main h2,
main p.selection-auto-subtitle {
  margin-block: 0;
}
/* Декор без зображень — лише CSS-градієнти */
.advantages-bg,
.selection-auto-bg,
.buying-bg,
.catalog-bg,
.credit-bg,
.advantages-bg-3,
.selection-auto-bg-3,
.buying-bg-3,
.catalog-bg-3,
.credit-bg-3 {
  display: block;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 85% 10%, rgba(44, 90, 80, 0.35), transparent 70%);
}

.advantages-bg-2,
.selection-auto-bg-2,
.buying-bg-2,
.catalog-bg-2,
.catalog-bg-4,
.credit-bg-2 {
  display: block;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 50% at 10% 20%, rgba(0, 224, 22, 0.12), transparent 70%);
}

/* Простий каталог без Swiper */
.catalog-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a2826;
}

.catalog-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Швидший рендер нижніх секцій */
.catalog,
.credit,
.faq,
.contacts,
.reviews {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* Системний шрифт — без Google Fonts */
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Форма / телефон */
input { color: #000; }
::placeholder { color: #333; }
.error { background: #f78282 !important; }
.iti { width: 100%; }
.input-default { width: 100%; }
.iti__selected-dial-code { color: #000; }
.iti__country-list.iti__country-list--dropup { z-index: 2222; }
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn_send:disabled { opacity: 0.7; cursor: not-allowed; }
