* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {

  color: #fff;
  overflow-x: hidden;
}

/* --- HEADER --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: white;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 70px;
}

.logo .gear {
  margin-right: 10px;
  color: orange;
}

.btn {
  background: #ff6600;
  color: #fff;
  padding: 5px 8px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn:hover {
  background: #ffb84d;
}

nav {
    position: relative;
    background: #fff;
    padding: 1em;
  }

  /* Прячем чекбокс */
  #menu-toggle {
    display: none;
  }

  /* Иконка-бургер */
  .burger-icon {
    font-size: 28px;
    cursor: pointer;
    display: none;
    user-select: none;
  }

  /* Меню */
  .nav-list {
    font-size: 20pxs;
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  .nav-list a {
    text-decoration: none;
    color: black;
    padding: 10px 15px;
    display: block;
  }

  /* Мобильная версия */
  @media (max-width: 850px) {
    .burger-icon {
      display: block;
      position: fixed;
      right: 20px;
      top: 55px;
      color: black;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      background:none;
      width: 150px;
      text-align: center;
      top: 60px;
      left: 0;
    }

    /* когда чекбокс включён → показать меню */
    #menu-toggle:checked + .burger-icon + .nav-list {
      display: flex;    }
  }

/* img*/
h1 {
  display: flex;
  justify-content: space-evenly;
  color: #000;
}
.image {
  padding-top: 35px;
  padding-bottom: 50px;
  flex-direction: column;
  background-color: white;
}
.img-box {
  display: flex;
  justify-content: space-evenly;
  padding-top: 70px;
}
.img {
  width: 140px;
}

@media (max-width: 1010px){
.img {
  width: 100px;
}
}

@media (max-width: 716px){
.img {
  width: 80px;
}
.img-box {
  padding-top: 50px;
}
}
@media (max-width: 570px){
.img {
  width: 50px;
}
}
@media (max-width: 360px){
  h1 {
    text-align: center;
  }
.img {
  width: 35px;
}
}

/* --- HERO  ---s*/
.hero {
  height: 500px;
  margin: auto;
  display: flex; 
  align-items: center;
  padding: 140px 7% 600px;
  flex-wrap: wrap;
  background-image: url(img/17.jpg);
  background-size: cover;
}

.hero-content {
  max-width: 550px;
  text-align: left;
  animation: fadeIn 1.2s ease;
  margin-bottom: 100px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.hero p {
  margin-bottom: 25px;
  color: #ccc;
}

.hero-image img {
  width: 500px;
  animation: fadeIn 1.5s ease;
}

@media (max-width: 1230px){
.hero p {
color: #fff;
font-size: 16px;
margin-bottom: 25px;
padding: 10px;
background-color: rgba(255, 255, 255, 0.3); /* Полупрозрачный фон самого элемента */
backdrop-filter: blur(6px); /* Применение размытия к тому, что находится позади */
padding: 10px;
border-radius: 10px;
}
}
@media (max-width: 1860px){
.hero p {
color: #fff;
font-size: 16px;
margin-bottom: 25px;
padding: 10px;
background-color: rgba(255, 255, 255, 0.3); /* Полупрозрачный фон самого элемента */
backdrop-filter: blur(6px); /* Применение размытия к тому, что находится позади */
padding: 10px;
border-radius: 10px;
}
}

/* --- BENEFITS --- */
.benefits {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: white;
  padding: 60px 8%;
  flex-wrap: wrap;
}
.benefits-p {
color:lightgrey;
font-size: 14px;
}
 
.benefit {
  text-align: center;
  width: 250px;
  animation: fadeUp 1.3s ease;
  padding: 10px;
  margin-bottom: 35px;
  border: 1px solid;
  border-color:#ff6600;
  border-radius: 25px;
}

.benefit img {
  width: 70px;
  margin-bottom: 15px;
}

.benefit h3 {
  margin-bottom: 10px;
  color: black;
}
.bone-box {
flex-direction: column;
justify-content: center;
border-bottom: lightgray;
border-style: solid;
border-width: thin;
}
.bone-text {
  color: #000;
  display: flex;
  justify-content: space-around;
  padding-bottom: 30px;
  text-align: center;
  font-size: 46px;
}
.bone-texts {
  color: #000;
  display: flex;
  justify-content: space-around;
  padding-bottom: 30px;
  text-align: center;
  font-size: 18px;
}

.benefit-box {
  justify-content: space-around;
  display: flex;
  margin-top: 60px;
  color: #000;
}
@media (max-width: 1230px){
.benefit-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.hero {
  padding: 60px 7% 250px;
}
.bone-text {
  font-size: 36px;
}
}
@media (max-width: 670px){
.benefit-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.bone-text {
  font-size: 26px;
}
}


.contact-form {
  background: #e8762a;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 500px;
  margin: 60px auto;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
}

.form-header {
  color: #000;
  font-size: 25px;
}
.contact-form h2 {
  text-align: center;
  color: #FF6600;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label {
  font-size: 15px;
  color: #ccc;
}

.contact-form input,
.contact-form textarea {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 12px;
  color: #000;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #FF6600;
  box-shadow: 0 0 5px rgba(255,102,0,0.6);
  outline: none;
}

.consent {
  font-size: 14px;
  color: #aaa;
  line-height: 1.4;
}

.consent input[type="checkbox"] {
  accent-color: #FF6600;
  margin-right: 8px;
  transform: scale(1.1);
}

.consent a {
  color: #FF6600;
  text-decoration: none;
}

.consent a:hover {
  text-decoration: underline;
}

button[type="submit"] {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background: #ff7a00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,102,0,0.4);
}

/* адаптив */
@media (max-width: 600px) {
  .contact-form {
    padding: 30px 20px;
  }
}



.consent {
  font-size: 14px;
  color: #aaa;
  line-height: 1.4;
  position: relative;
}

.consent input[type="checkbox"] {
  accent-color: #FF6600;
  margin-right: 8px;
  transform: scale(1.1);
}

.policy-tooltip {
  position: relative;
  display: inline-block;
}

.policy-tooltip a {
  color: #fff;
  text-decoration: none;
}

.policy-tooltip a:hover {
  text-decoration: underline;
}

/* всплывающее окно */
.tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 280px;
  background-color: #262626;
  color: #fff;
  text-align: left;
  border-radius: 8px;
  padding: 10px 12px;
  position: absolute;
  z-index: 1;
  bottom: 130%; /* всплывает вверх */
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: opacity 0.3s ease;
  font-size: 13px;
  line-height: 1.4;
}

/* маленькая стрелочка */
.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #262626 transparent transparent transparent;
}

/* при наведении — показать текст */
.policy-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}



.consent a:hover {
  text-decoration: underline;
}



.form-section {
  padding: 60px 8%;
  text-align: center;
}

.form-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #222;
  color: #fff;
  resize: none;
}

textarea {
  height: 120px;
}

.hidden {
  display: none;
}

#successMessage {
  color: #00ff99;
  margin-top: 10px;
}

/* --- FOOTER --- */
.footer {
  background: #0a1018;
  padding: 40px 8% 20px;
  text-align: center;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding: 15px;
}

.footer-logo {
  border-radius: 15px;
}

.footer-contacts {
  display: flex;
align-items: center;
}
.tlg-logo {
  width: 50px;
  height: 50px;
}

.copyright {
  color: #000;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 90%;
    margin-top: 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }
}



/* page2 */
.info {
  max-width: 1200px;
  color: black;
  margin: auto;
  text-align: center;
  margin-top: 70px;
  font-size: 20px;
  margin-bottom: 70px;
}
.info-text {
  padding: 55px;
}

.btn-two {
  background: #ff6600;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
}

/* page3 */
.heros {
    position: relative;
    height: 60vh;
    background: url('img/88.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-overlays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.hero-contents {
    position: relative;
    text-align: center;
    z-index: 1;
}

.heros h1 {
    font-size: 3em;
    margin-bottom: 0.4em;
    letter-spacing: 1px;
    color: white;
}

.heros p {
    font-size: 1.6em;
    color: #FF6600;
    font-weight: 500;
}

/* ===== ОСНОВНОЙ БЛОК ===== */
.about {
    padding: 80px 0;
    background: #fff;
}
strong {
 font-weight: 300;
}
.about p {
  font-size: 20px;
  color: #000;
  width: 90%;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.about-text {
  padding: 35px;
    flex: 1 1 55%;
    font-size: 1.05em;
    line-height: 1.7;
}

.about-images {
    flex: 1 1 40%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.about-img {
    width: 500px;
    border-radius: 10px;
    object-fit: cover;
}

.about-box {
display: flex;
justify-content: space-between;
margin-bottom: 35px;
align-items: center;
}

.about-one {
  margin-bottom: 35px;
}

.about p {
  margin-bottom: 10px;
}

@media (max-width: 1055px) {
  .about-img {
    width: 400px;
  }
}

@media (max-width: 800px) {
  .about-box {
    flex-direction: column;
  text-align: -webkit-center;
  }
}

@media (max-width: 500px) {
  .about-img {
    width: 350px;
  }

  .about-text {
    padding: 5px;
  }
}

@media (max-width: 360px) {
 .about-img {
    width: 250px;
  }
}