/* Reset & Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 2rem 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Variables */
:root {
  --color-primary: #249326;
  --color-primary-dark: #249326;
  --color-black: #242424;
  --color-white: #fff;
  --color-light-gray: #f5f5f5;
  --color-gray: #ccc;
  --transition-fast: 0.2s ease;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1rem;
}
.upper-header-disclosure {
  position: absolute;
  background-color: #242424;
  top: 0;
  width: 100%;
  height: auto;
  padding: 4px 0;
}
.upper-header-disclosure p {
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 15px;
  margin: 0;
}

/* BUTTONS */
.btn {
  display: inline-block;
  border-radius: 0.5rem;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn--primary {
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border: none;
  font-family: "Montserrat", sans-serif;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn--large {
  font-size: 1.125rem;
}

.section ul li.legal-li {
  margin-bottom: 0.5rem;
  font-size: 16px;
  color: RGBA(36,36,36,0.7);
  font-weight: 500;
  background-image: url("../img/choose.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 0 1px;
  padding-left: 30px;
  line-height: 1.4;
}

/* HEADERS */
.header {
  width: 100%;
  left: 0;
  z-index: 200;
}

.header--default {
  position: absolute;
  top: 22px;
  color: var(--color-white);
}

.header li {
  text-align: right;
}

p.header-text-under-phone {
  font-size: 12px;
  opacity: 0.6;
}

.phone-animated-svg {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 6px;
}

.header.header--fixed.visible a.phone-header {
  color: #242424;
}

.header.header--fixed.visible a.phone-header span {
  color: #249326;
}

.header.header--fixed.visible .upper-header-disclosure {
  position: relative;
}

a.phone-header {
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
}

a.phone-header span {
  text-decoration: underline;
  font-weight: 600;
}

.header--fixed {
  position: fixed;
  top: 0;
  background-color: var(--color-white);
  color: #333;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header--fixed.visible {
  transform: translateY(0);
  
}

.header__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0.6rem 1rem 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo p {
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  vertical-align: super;
  position: absolute;
  top: 30px;
}

.header .logo p span {
  color: #249326;
}

.header .logo p.light-logo {
  color: #242424;
  top: -6px;
  position: relative;
}

.logo img {
  height: 40px;
  display: inline-block;
  margin-right: 1rem;
}

.nav--desktop .nav__list {
  display: flex;
  gap: 2rem;
      align-items: center;
}

.nav__link {
  font-weight: 500;
  color: inherit;
  transition: color var(--transition-fast);
  font-size: 14px;
}

.nav__link:hover {
  color: var(--color-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #FFF;
  border-radius: 2px;
  transition: background var(--transition-fast);
}

@media screen and (max-width: 1066px) {
  p.header-text-under-phone {
    font-size: 11px;
  }
  .nav--desktop .nav__list {
    gap: 1rem;
  }

  .nav__link {
    font-weight: 700;
    font-size: 12px;
  }

  .btn--primary {
    font-size: 12px;
    font-weight: 700;
    padding: 0.6rem 1rem;
  }


  .logo img {
    margin-right: 0.5rem;
    height: 29px;
  }

  .header .logo p {
    font-size: 14px;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-black);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 150;
}

.mobile-menu.visible {
  transform: translateX(0);
}

.mobile-menu__list {
  padding: 8rem 2rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu__list p.header-text-under-phone {
  color: #FFF;
  font-size: 14px;
}

.mobile-menu__list a.phone-header {
  font-size: 20px;
}

.mobile-menu__link {
  color: var(--color-white);
  font-size: 1.2rem;
  padding: 0.75rem 1rem;
}

.mobile-menu__link.btn {
  margin-top: 0rem;
}

.container {
  max-width: 1024px;
  margin: 48px auto 72px;
  padding: 0 20px;
}

/* ===== Stepper ===== */
.form-que-block {
  background-color: #F4F4EE;
}
.form-que-block h2 {
  font-size: 32px;
  text-align: center;
}
#container-form.form-que-block.container {
  background-color: #F4F4EE;
  margin-top: 0;
  padding-top: 3rem;
  height: 800px;
  margin-bottom: 0;
}
.form-que-block h2 span {
  color: #249326;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: solid 1px #DDE7D8;
  margin-bottom: 0;
}
.step {
  text-align: center;
  position: relative;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(83% + 2px);
  width: calc(100% - 76px);
  height: 4px;
  background: #DDE7D8;
  border-radius: 4px;
}
.step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #DDE7D8;
  color: var(--color-primary);
  font-weight: 700;
  margin: 0 auto 8px;
  transition: transform 0.3s ease-in-out;
}
.step.active .step__icon {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(36, 147, 38, 0.12);
}
.step.done .step__icon {
  background: #2dbb31;
  color: #fff;
}
.step__title {
  font-size: 13px;
  color: #1c7c1e;
  font-weight: 600;
  text-align: left;
  left: 44px;
  position: relative;
}
.step__subtitle {
  font-size: 12px;
  color: #7c8a7c;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  left: 44px;
  position: relative;
}

/* --- STEP 6: layout — 3 колонки, компактно --- */
section.card[data-step="6"] .options--3cols{
  display:inline-grid;
  grid-template-columns: repeat(3,1fr);
  gap:16px;
  margin: 0;
  width: 100%;
}

/* текст */
section.card[data-step="6"] .option--multi .option__text{
  font-weight:700;
  font-size:16px;
  line-height:1.25;
  text-align:left;
  color:#228B22; /* зелёный как в теме */
}


@media (max-width: 960px){
  section.card[data-step="6"] .options--3cols{ grid-template-columns: repeat(3,1fr);
  }
  section.card[data-step="6"] .option--multi .option__text {
    font-size: 14px;
  }
}
@media (max-width: 600px){
  section.card[data-step="6"] .options--3cols{ grid-template-columns: 1fr; }
}

/* карточка мультиселекта */
section.card[data-step="6"] .option--multi{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  padding:13px 16px;
  border-radius:10px;
  background:#fff;
  text-align: left;
  box-shadow:0 0 0 1px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.05);
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, background-color .12s ease;
  user-select:none;
}
section.card[data-step="6"] .option--multi:hover{
  transform:translateY(-1px);
  box-shadow:0 0 0 1px rgba(0,0,0,.08), 0 6px 16px rgba(0,0,0,.08);
}


/* скрываем сам checkbox, кликаем по карточке */
section.card[data-step="6"] .option--multi input[type="checkbox"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

/* буллет */
section.card[data-step="6"] .option--multi .option__bul{
  position:absolute;
  bottom:12px;
  left:10%;
  transform:translateX(-50%);
  width:23px;
  height:23px;
  border-radius:50%;
  border:1px solid #cfd8d3;
  background:#fff;
  transition:border-color .12s ease, box-shadow .12s ease, background .12s ease;
}

section.card[data-step="6"] .option--multi .option__bul::after {
  width: 11px;
  height: 11px;
}

/* выбранное состояние */
section.card[data-step="6"] .option--multi.selected{
  background:#228B22;
  box-shadow:0 0 0 2px #228B22 inset, 0 6px 16px rgba(34,139,34,.25);
}
section.card[data-step="6"] .option--multi.selected .option__text{ color:#fff; }
section.card[data-step="6"] .option--multi.selected .option__bul{
  background:#fff;
  border-color:#fff;
  box-shadow:inset 0 0 0 6px #228B22, 0 0 0 0px #fff;
}



@media (max-width: 660px){
  
section.card[data-step="6"] .option--multi {
  margin-bottom: 0;
}
}
/* Step 6: контейнер для "Other" */
.option-other {
  margin-top: 12px;
}
.option-other[hidden] {
  display: none !important;
}

.option-other__label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-black);
}

.option-other__input {
  width: 80%;
  padding: 12px 14px;
  border: 1px solid var(--color-gray);
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.option-other__input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(36,147,38,0.12);
}

/* Показывать кнопку Continue только когда Other активен и введён текст */
[data-step="6"] [data-continue="conditions"] {
  display: none;            /* по умолчанию скрыта */
}
[data-step="6"].other-ready [data-continue="conditions"] {
  display: inline-flex !important;
  margin-left: 1rem;     /* показать, когда ввод валиден */
}


/* ===== Card / question ===== */
.card {
  background: transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
   padding: 10px;
    margin-top: 12px;
    text-align: center;
}
h2.title {
  text-align: center;
  font-size: 36px;
  line-height: 39px;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin: 18px 0 36px;
}
.subtitle {
  text-align: center;
  color: #3f3f3f;
  margin: 0 0 26px;
  font-weight: 600;
}

/* ===== Yes/No options ===== */
.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 742px;
  margin: 0 auto;
}
.option {
  border: 1px solid RGBA(36,36,36,0.1);
  border-radius: 15px;
  padding: 36px 24px;
  display: flex;
  align-items: center;
  width: 360px;
  gap: 16px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  position: relative;
  background-color: #FFF;
  flex-direction: column;
}
.option svg {
  top: 8px;
    margin-right: 6px;
    position: relative;
}
.option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.option__bul {
  width: 30px;
  height: 30px;
  border: 1px solid #cfd8cf;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  transition: all 0.1s ease-in-out;
}
.option__bul::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.3s ease-in-out;
}
.option:hover {
  border-color: var(--color-primary);
}
.option.selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  box-shadow: 0 6px 20px rgba(36, 147, 38, 0.12);
}
.option.selected .option__bul {
  border-color: #FFF;
}

.option span {
  color: #269328;
  font-size: 24px;
}

.option.selected span {
  color: #FFF;
}


.option:hover span {
  color: #FFF;
}

.option.selected .option__bul::after {
  background: #FFF;
}

.option:hover,
.option:focus-within {
  border-color: var(--color-primary);
  background: #FFF;
  box-shadow: 0 6px 20px rgba(36, 147, 38, 0.12);
  background-color: var(--color-primary);
}
.option:hover .option__bul,
.option:focus-within .option__bul {
  border-color: #FFF;
}


.option:hover .option__bul::after,
.option:focus-within .option__bul::after {
  background: #FFF;
}

[data-next] {
  display: none !important;
}

.thankyou{ text-align:center; padding:28px 12px 8px; }
.thankyou__icon{
  width:86px;height:86px;margin:0 auto 12px;
  border-radius:18px;border:4px solid var(--color-primary);
  display:grid;place-items:center;font-size:42px;color:var(--color-primary);
}
/* ===== Form (step 6) ===== */
.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}
.col-6 {
  grid-column: span 6;
}
.col-4 {
  grid-column: span 4;
}
.col-12 {
  grid-column: span 12;
}
.input,
.select {
  width: 100%;
  height: 50px;
  border: 1px solid RGBA(36,36,36,0.1);
  border-radius: 60px;
  padding: 0 16px;
  font: 500 16px/1.2 "Montserrat", sans-serif;
  transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background: #fff;
}
.input:focus,
.select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(36, 147, 38, 0.12);
}
label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: var(--color-primary);
}
.disclaimer {
  font-size: 12px;
  color: #6b6b6b;
  margin-top: 6px;
  line-height: 13px;
  text-align: center;
}
.disclaimer a {
  font-weight: 600;
  color: var(--color-primary);
}
#finalForm button.btn.btn--primary {
  margin-left: 1rem;
}
.thankyou svg {
  width: 114px;
  height: auto;
}

/* ===== Controls ===== */
.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
}
.btn {
  appearance: none;
  border: 0;
  border-radius: 14px;
  height: 52px;
  padding: 0 22px;
  font: 700 16px/1 "Montserrat", sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.btn--ghost {
  appearance: none;
  border: solid 1px RGBA(36,36,36,0.1);
  border-radius: 100px;
  height: 50px;
  width: 50px;
  padding: 0 14px;
  font: 700 16px/1 "Montserrat", sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  background: #fff;
  color: #242424;
}
.btn--ghost:hover {
  background: var(--color-primary);
  color: #FFF;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.note {
  font-size: 13px;
  color: #7b7b7b;
}

/* ===== Fade animation ===== */
.fade-enter {
  opacity: 0;
  transform: translateY(8px);
}
.fade-enter-active {
  opacity: 1;
  transform: none;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 820px) {
  .option-other__input {
  width: 90%;;
}
  .option {
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
  }
  .controls {
  margin-top: 12px;
}
.br-none{
  display: none;
}
  .form-que-block h2 {
  font-size: 22px;
  line-height: 26px;
  margin: 6px 0 18px;
}
#container-form.form-que-block.container {
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem; 
  margin: 0;
}
  .stepper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  align-items: start;
}
.step:not(:last-child)::after {
  display: none;
}
.step__icon {
  width: 36px;
  height: 36px;
}
.step.active .step__icon {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(36, 147, 38, 0.12);
}
.step.done .step__icon {
  background: #2dbb31;
  color: #fff;
}
.step__title {
  font-size: 12px;
  text-align: center;
  left: 0px;
  line-height: 13px;
}
.step__subtitle {
  font-size: 11px;
  text-align: center;
  left: 0px;
}

  .header .logo p.light-logo {
  top: -2px;
}
  p.header-text-under-phone {
    font-size: 10px;
  }
  .stepper {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 9px;
  }
  .options {
    gap: 12px;
  }
  .grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 9px;
  }
  .col-6 {
    grid-column: span 6;
  }
  .col-4 {
    grid-column: span 12;
  }
  .disclaimer {
    text-align: left;
}
}

/* HERO SECTION */

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;      /* ensure it fills without distortion */
  z-index: 0;            /* place it behind other content */
  pointer-events: none;   /* ensures clicks “pass through” to underlying elements */
}

@media screen and (max-width: 767px) {
 .hero-video {
  display: none;
}
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15rem 1rem 14rem 1rem;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  background-image: url("../img/hero_back.jpg");
  background-size: cover;
  background-position: center;
}

.hero__content {
  flex: 1;
  z-index: 1;
  max-width: 560px;
}

.hero__title {
  font-size: 3rem;
  line-height: 1.2;
}

.hero__title span {
  color: var(--color-primary);
}

.hero__subtitle {
  margin: 1.5rem 0;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero__image {
  flex: 1;
  text-align: right;
}

.hero__image img {
  width: 100%;
  max-width: 600px;
  opacity: 0.9;
}

/* SECTIONS */
.section {
  padding: 4rem 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

.section__title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.about .section__title  {
  text-align: left;
}

.about li  {
  font-weight: 500;
  color: RGBA(36,36,36,0.5);
  margin: 1rem;
}

.about ul  {
  text-align: left;
}

.about img  {
  max-height: 360px;
  width: auto;
}

.about svg  {
  margin-right: 1rem;
  top: 7px;
  position: relative;
}

.section__title span {
  color: var(--color-primary);
}

/* SERVICES GRID */
.services__grid {
  display: block;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

.service {
  display: inline-block;
  text-align: left;
  width: 30%;
  margin: 1rem;
}

.service.service-2 {
  width: 60%;
}
.section.services {
  text-align: center;
}
.service:first-child {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.service:first-child .service__icon {
  background: var(--color-white);
  padding: 0.75rem;
  border-radius: 0.25rem;
  display: block;
  width: 55px;
}

.service__icon img,
.service__icon svg {
}

img.service-image {
  width: 50%;
  display: inline-block;
}

.service__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.6rem;
}

.service__list {
  list-style: disc inside;
  font-size: 0.95rem;
  display: inline-block;
}

.service-text-block {
  display: inline-block;
  width: 49%;
  text-align: left;
}

.service:not(:first-child) .service__icon {
  flex-shrink: 0;
  display: inline-block;
}

.double-cta {
  background: url("../img/cta.jpg") no-repeat center;
  background-size: cover;
  text-align: center;
}
.double-cta h2 {
 color: #FFF;
}

@media screen and (max-width: 768px) {
    .option-other__input {
  width: 100%;
}
  .double-cta h2 {
 font-size: 26px;
 padding: 2rem 0rem;
}
  .about li {
    margin: 6px;
}
.about .section__title {
    font-size: 26px;
}
  .header .logo p {
  top: 19px;
}
.header--default {
    top: 36px;
}
.upper-header-disclosure p {
    font-size: 11px;
}
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service {
    width: 100%;
    margin: 0.5rem 0;
    text-align: center;
  }

  .service.service-2 {
    width: 100%;
  }

  img.service-image {
    width: 100%;
  }

  .service-text-block {
    width: 100%;
    text-align: center;
  }
  .service__icon {
    display: block;
    margin: 0 auto;
  }
  .service__icon img,
  .service__icon svg {
    width: 50px;
    height: 50px;
    display: inline-block;
  }
  .service__title {
    text-align: center;
  }
  .service__list {
    text-align: center;
    width: 100%;
  }
}

/* HOW IT WORKS */
.how-it-works__steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.step-item {
  text-align: left;
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  vertical-align: top;
  background-color: RGBA(255,255,255,0.06);
  border: 1px solid RGBA(255,255,255,0.1);
  border-radius: 15px;
}

.step-item img {
  width: 60px;
  height: 60px;
  padding: 0.86rem;
  background-color: RGBA(255,255,255,0.1);
  border-radius: 90px;
  margin-bottom: 1rem;
  display: inline-block;
}

.step-item__title {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #fff;
}

.step-item__desc {
  font-size: 0.95rem;
  color: #FFF;
  opacity: 0.6;
}

/* WHY CHOOSE */
.why-choose {
  background: var(--color-black);
  color: var(--color-white);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}
.feature img {
  display: inline-block;
}

.feature__icon img,
.feature__icon svg {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}
.how-it-works {
  background: #249326;
}

.how-it-works .section__title {
  color: #fff;
}

.how-it-works .section__title span {
  opacity: 0.6;
  color: #fff;
}

.feature__title {
  margin-bottom: 0.5rem;
}

.feature__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ABOUT SECTION */
.about__content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about__text {
  flex: 1;
}

.about__image {
  flex: 1;
  text-align: right;
}

.about__image img {
  max-width: 100%;
  border-radius: 0.5rem;
}

/* REVIEWS SLIDER */
.reviews__container {
  position: relative;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  touch-action: pan-y;
}

.reviews__slide {
  flex: 0 0 100%;
  padding: 2rem;
  text-align: center;
}

.reviews__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.reviews__name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.reviews__position {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.reviews__text {
  font-style: italic;
  color: #444;
}

.reviews__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 1);
  color: #fff;
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 2;
}
.reviews__nav:hover {
  background: rgba(0, 0, 0, 0.6);
}

.reviews__nav--prev {
  left: 1rem;
}

.reviews__nav--next {
  right: 1rem;
}

@media screen and (max-width: 768px) {
  .step-item {
  padding: 1rem;
}

.step-item img {
  margin-bottom: 0rem;
}

.step-item__desc {
  font-size: 0.95rem;
  color: #FFF;
  opacity: 0.6;
  margin-bottom: 0;
}

  .reviews__slide {
    padding: 0rem;
  }

  .reviews__avatar {
    width: 60px;
    height: 60px;
  }

  .reviews__name {
    font-size: 1.1rem;
  }

  .reviews__position {
    font-size: 0.85rem;
  }

  .reviews__text {
    font-size: 0.95rem;
  }
}

/* CONTACT SECTION */
.contact {
  background: var(--color-black);
  color: var(--color-white);
}

.contact__wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact__info {
  flex: 1;
}

.contact__info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact__info a {
  color: inherit;
  font-weight: 500;
}

.contact__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 46vw;
}

/* FOOTER */
.footer {
  background: #FFF;
  color: rgba(36, 36, 36, 0.6);
  padding: 2rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

.footer__top{
  border-bottom: solid 1px RGBA(36,36,36,0.1);
  display: block;
  padding-bottom: 2rem;
}

.footer__top .logo{
  display: inline-block;
  width: 40%;
}

.footer__container p.footer-logo {
  color: #242424;
  display: inline-block;
  vertical-align: super;
  font-weight: 700;
  font-size: 18px;
}

.footer__container p.footer-logo span {
  color: #249326;
}

.nav.nav--footer {
  display: inline-block;
  float: right;
  width: 50%;
  text-align: right;
}

.nav--footer ul.nav__list {
  top: 1rem;
  position: relative;
}

.nav--footer .nav__link {
  color: inherit;
  font-size: 0.9rem;
}
.nav--footer li {
display: inline-block;
margin-left: 1rem;
font-weight: 400;
}
.footer__copy {
  font-size: 0.9rem;
  margin-bottom: 0;
  float: right;
}
.footer__contact p.footer__phone {
  margin-right: 1rem;
}
.footer__contact p {
  display: inline-block;
}
.footer__contact p a {
  color: RGBA(36,36,36,0.6);
  font-size: 14px;
  display: inline-block;
  margin-left: 0.6rem;
}
.footer__contact img {
  display: inline-block;
  position: relative;
  top: 5px;
}
.footer__contact {
  padding-top: 3rem;
}

.contact__wrapper .btn.btn--primary {
  font-size: 20px;
  font-weight: 500;
}
.contact.contact-page {
  height: 100vh;
  padding: 4rem 1rem 6rem 1rem;
  background-image: url("../img/contact.jpg");
  background-size: cover;
  background-position: center;
}

/* по-умолчанию скрываем контейнер с благодарностью */
.hidden {
  display: none;
}

/* стили для блока «Спасибо» */
.thank-you {
  text-align: center;
  padding: 2rem;
}

/* сам SVG-иконка */
.check-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: scale(0);
  animation: scaleUp 0.4s ease-in-out forwards;
}

/* круговая анимация */
.check-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: strokeCircle 0.6s ease-in-out forwards;
}

/* «чек» анимация */
.check-path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheck 0.3s 0.6s ease-in-out forwards;
}

/* ключевые кадры */
@keyframes strokeCircle {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes strokeCheck {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes scaleUp {
  to {
    transform: scale(1);
  }
}

/* текст благодарности */
.thank-you h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.thank-you p {
  color: #666;
}
.hero.legal-page {
  background-image: url("../img/legal.jpg");
  background-size: cover;
  background-position: center;
  padding: 8rem 1rem;
}

.hero.legal-page.marketing-partners-hero {
  background-image: url("../img/marketing-partners.jpg");
}

@media screen and (max-width: 768px) {
  .hero.legal-page {
  padding: 8rem 1rem 3rem 1rem;
}
  .footer__contact p {
  display: block;
  text-align: center;
  width: 100%;
}
.footer__copy {
    float: none;
}
.footer__contact {
    padding-top: 1rem;
}
  .footer__top .logo {
    display: block;
    width: 100%;
    text-align: center;
}
  .nav.nav--footer {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
}
    .nav--footer ul.nav__list {
        top: 0rem;
        display: block;
        width: 100%;
        float: none;
    }
  .section__title {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  .contact.contact-page {
    padding: 3rem 0rem 1rem 0rem;
    height: auto;
  }
  .contact__form {
    width: 100%;
  }
  .footer__container {
    flex-direction: column;
    align-items: center;
  }
  .contact__info {
    width: 100%;
    display: block;
  }

  .contact__wrapper {
    display: block;
  }
  .nav--footer .nav__list {
    flex-direction: column;
    align-items: center;
  }

  .nav--footer .nav__link {
    margin-bottom: 0.5rem;
  }
  .footer__copy {
    text-align: center;
    margin-top: 1rem;
  }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .services__grid,
  .why-choose__grid {
    grid-template-columns: 1fr;
  }

  .about__content {
    flex-direction: column;
    text-align: center;
  }

  .about__image {
    text-align: center;
  }
}

@media (max-width: 768px) {
  #hamburger-fixed span {
    background: #242424;
  }
  .hero__title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero__subtitle {
    margin: 1.5rem 0;
    font-size: 1rem;
  }
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 14px;
  }
  .nav--desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 13rem 1rem 3rem 1rem;
  }

  .hero__image {
    margin-top: 2rem;
  }

  .how-it-works__steps {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .header__container,
  .section {
    padding: 1rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 24px;
  }

  .btn--primary {
    padding: 1rem 0.6rem;
  }
  #home .btn--primary {
    padding: 0.75rem 1.2rem;
    font-size: 16px;
  }
}
