/* Цвета */
:root {
  --dark-blue: #14213d;
  --sky-blue: #5399aa;
  --deep-green: #024930;
  --nude-gold: #b2926f;
  --creamy: #fff5ee;
}
html {
  scroll-behavior: smooth;
}

/* Секция */
body {
  font-family: "Montserrat";
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none; /* чтобы кликабельны были только элементы внутри */
}

/* Логотип */
.logo {
  background-color: #024930; /* зелёный */
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 16px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: all;
}

/* Бургер-кнопка */
.burger {
  background-color: #024930;
  border: none;
  padding: 14px 12px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  pointer-events: all;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: white;
}


.hero {
  position: relative;
  height: 90vh;
  background: url('images/main1.png') center/cover no-repeat;
  color: var(--creamy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Затемнение + фильтр */
.main-headline {
  padding: 10px 0;
  border-radius: 10px;
  background: rgb(42 43 45 / 35%);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 20px;
}



.container {
  padding: 20px;
  max-width: 90%;
}



.hero-title {
  font-size: 34px;
  font-weight: 300;
  line-height: 0.9;
  margin:15px 0;
  
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 25px;
  color: var(--creamy);
}

/* Кнопки */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--nude-gold);
  color: var(--dark-blue);
}

.btn.secondary {
  font-size: 20px;
  background: transparent;
  border: 1px solid var(--nude-gold);
  color: #ffffff;
  background: rgb(12 13 14 / 35%);
  backdrop-filter: blur(2px);

}

.btn:hover {
  transform: scale(1.02);
}
.quiz-section {
  background: white;
  padding: 40px 20px;
  color: var(--dark-blue);
}
.quiz-section p {
  margin: 0;
}

.quiz-container {
  max-width: 500px;
  margin: 0 auto;
}

.quiz-step {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.quiz-step.active {
  display: flex;
}

.quiz-question {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option {
  font-family: 'Montserrat';
  font-weight: 300;
  padding: 15px 12px;
  border: 1px solid var(--deep-green);
  color: #000000;
  border-radius: 8px;
  background: #f9f9f9;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  transition: 0.3s ease;
}

.quiz-option:hover {
  background: var(--deep-green);
  color: white;
}

.quiz-options.multiple label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.quiz-options.multiple input[type="checkbox"] {
  transform: scale(1.2);
}

.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quiz-form input {
  padding: 12px;
  border: 1px solid var(--dark-blue);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 300;
  font-family: 'Montserrat';

}



.quiz-option.selected {
  background-color: var(--deep-green);
  color: white;
  position: relative;
  border-color: var(--deep-green);
}

.quiz-option.selected::after {
  content: '✓';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 20px;
  color: white;
}



.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
.back-btn {
    font-size: 20px;
    background: transparent;
    border: 1px solid var(--sky-blue);
    border-radius: 10px;
    color: var(--sky-blue);
    padding: 15px 20px;
    cursor: pointer;


}
.next-btn{
    font-size: 20px;
    background: var(--dark-blue);
    border-radius: 10px;
    color: #ffffff;
    padding: 15px 20px;
    cursor: pointer;
}

.lead-form__messengers-icons {
    height: 1.25rem;
    min-width: 4rem;
    background-size: 1.125rem 100%;
    background: url(images/8.svg) 2.25rem 0 no-repeat, url(images/viber.svg) 1.5rem 0 no-repeat;
}
.hero-icons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.icon-block {
  flex: 1;
  min-width: 30%;
  max-width: 33.3%;
  text-align: center;
  color: var(--creamy);
}

.icon-block img {
  height: 65px;
}

.icon-block p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.1;
}
footer {
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  background-color: #024930;
  padding: 30px 10px;
  text-align: center;
}
.quiz-progress {
  padding: 20px 0px;
}


.btm-submit {
    font-size: 20px;
    background: var(--dark-blue);
    border-radius: 10px;
    color: #ffffff;
    padding: 15px 20px;
    cursor: pointer;
}

