body {
  overflow-x:hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-family: "EB Garamond", serif;
  font-weight: 700;
  color: #fff;
  font-size: 60px;
}

h2 {
  font-family: "EB Garamond", serif;
  font-weight: 700;
  font-size: 50px;
}

p {
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
}

/*Header*/
.container {
  width: 1280px;
  margin: 0 auto;
}

header {
  background-color: rgba(239, 240, 235, 1);
  padding-top: 25px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  font-family: "Inter";
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  text-decoration: none;
  color: #195535;
  padding: 0 25px;
}

.active {
  font-weight: 800;
}

.buttons {
  display: flex;
  gap: 10px;
}

.btn {
  font-family: "Inter";
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;

  padding: 15px 25px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.btn-green {
  background: #257F4F;
  color: #fff;
}

.btn-yellow {
  background: #FEEF5E;
  color: #000;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1100; /* чтобы было выше overlay */
}
.burger span {
  display: block;
  height: 3px;
  background: #195535;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Анимация крестика */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  height: 100px;
  inset: 0;
  background: rgba(239,240,235,0.98);
  z-index: 1000;
}
.overlay.active {
  display: flex;
}
.overlay-menu {
  display: flex;
  text-align: left;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

@media (max-width: 1024px) {
  .container {
    width: 900px;
  }

  header .buttons {
    display: none; /* кнопки уезжают в бургер */
  }

  .burger {
    display: flex;
  }

  header {
    padding-top: 22px;
  }

  .overlay nav a {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    width: 322px;
  }

  header nav {
    display: none; /* меню тоже прячем */
  }

  .overlay {
    display: none;
    position: fixed;
    height: 100%;
    inset: 0;
    background: rgba(239,240,235,0.98);
    z-index: 1000;
    text-align: left;
    align-items: start;
    padding: 80px;
  }

  .overlay-menu {
    display: flex;
    text-align: left;
    flex-direction: column;
    gap: 20px;
  }

  .overlay nav a {
    display: block;
    padding: 0;
  }
}


/*Hero*/

.hero {
  position: relative;
  background-color: rgba(239, 240, 235, 1);
  background-image: url(images/main-background.png);
  background-position: center;
  background-size: 1350px;
  padding-bottom: 60px;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 90px;
}

.hero-action, .hero-text, .hero-img {
  flex: 1;
}

h1 {
  font-family: "EB Garamond";
  font-weight: 600;
  font-size: 67px;
  line-height: 67px;  line-height: 1.2;
  color: rgba(25, 85, 53, 1);
  margin-bottom: 80px;
}

.hero-action h1 span {
  color: rgba(25, 85, 53, 1);
  font-style: italic;
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #FEEF5E 100%);
}

.input-box {
  display: flex;
  align-items: center;
  width: 426px;
  border-radius: 10px;
  background: #fff;
}

.input-box input {
  flex: 1;
  padding: 20px 0 20px 20px;
  border: none;
  border-radius: 10px 0 0 10px;
  outline: none;

  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

.input-box button {
  background: #1e7e34;
  border: none;
  border-radius: 8px;
  padding: 17px 25px;
  color: #fff;

  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  white-space: nowrap;
}

.featured {
  margin-top: 146px;
  margin-bottom: 20px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(4, 14, 8, 70%);

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-img {
  display: flex;
  gap: 60px;
}

.feature-img img {
  padding: 0;
  margin: 0;
}

.main-img {
  padding: 0 20px;
  object-fit: cover;
}

.hero-desc {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: rgba(4, 14, 8, 70%);

  padding-left: 40px;
}

.hidden-desctop {
  display: none;
}

.hidden-4 {
  display: none;
}

.hero .arrow-decor {
  position: absolute;
  top: 266px;
  left: 534px;
  width: 80px;
}

@media (max-width: 1024px) {
  .hero {
    background-size: 1350px;
    padding-bottom: 100px;
  }

  .hero .container {
    padding-top: 52px;
  }

  .hidden-desctop {
    display: block;
  }

  .hero-action, .hero-text, .hero-img {
    flex: none;
  }

  .hero-action {
    width: 426px;
  }

  .hero-img {
    width: 386px;
  }

  .hero-text {
    display: none;
  }

  h1 {
    margin-bottom: 22px;
  }

  .hero-desc {
    padding-left: 0px;
  }

  .input-box {
    margin-top: 30px;
    width: 385px;
  }

  .featured {
    margin-top: 50px;
    margin-bottom: 0px;
  }

  .feature-img {
    gap: 50px;
  }

  .main-img {
    padding: 0;
  }

  .hero .arrow-decor {
    top: 268px;
    left: 272px;
  }
}

@media (max-width: 768px) {
  .hero {
    background-image: url(images/main-background-768.png);
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom: 0;
  }

  .hero .container {
    flex-direction: column;
    gap: 30px;
    padding-top: 60px;
  }

  .hero-action {
    width: 100%;
  }

  .hero-img {
    width: 100%;
  }

  h1 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 28px;
  }

  h1 span {
    font-style: 67px;
    line-height: 67px;
  }

  .hero-desc {
    padding-left: 0px;
  }

  .hidden-4 {
    display: block;
  }

  .input-form {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 18px;
  }

  .input-form .input-box {
    width: 100%;
    border-radius: 10px;
    background: #fff;
  }

  .input-form input {
    padding: 20px 0 20px 20px;
    border: none;
    border-radius: 10px;
    outline: none;

    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
  }

  .input-form button {
    background: #1e7e34;
    border: none;
    border-radius: 8px;
    padding: 17px 25px;
    color: #fff;

    font-family: "Inter";
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    cursor: pointer;
    white-space: nowrap;
  }

  .featured {
    margin-top: 50px;
    margin-bottom: 0px;
    font-style: 14px;
    line-height: 25px;
  }

  .feature-img {
    gap: 37px;
  }

  .feature-img img {
    width: 137px;
  }

  .main-img {
    display: none;
  }

  .main-img-mob {
    padding: 0;
    margin-top: 30px;
    width: 100%;
  }

  .hero .arrow-decor {
    top: 151px;
    left: 280px;
  }
}


/*quote*/
.quote {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  padding: 60px 0 73px;
}

.quote-img svg {
  width: 73px;
  height: 73px;
}

h2 {
  font-family: "EB Garamond";
  font-weight: 600;
  font-size:50px;
  line-height: 60px;
  color:rgba(25, 85, 53, 1);
}

.quote-text h2 {
  text-align: center;
}

h2 span {
  color: rgba(25, 85, 53, 1);
  font-style: italic;
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #FEEF5E 100%);
}

@media (max-width: 1024px) {
  .quote {
    width: 900px;
  }
}

@media (max-width: 768px) {
  .quote {
    width: 322px;
    padding: 47px 0 43px;
  }

  h2 {
    font-size:40px;
    line-height: 42px;
  }
}


/*about*/
.about {
  margin: 0 auto;
  padding: 100px 0;
}

.about-content {
  display: flex;
  gap: 80px;
}

.about-img img {
  width: 600px;
}

.description {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 27.2px;
  color: rgba(4, 14, 8, 70%);

  margin-top: 25px;
}

.green-btn {
  background-color: rgba(37, 127, 79, 1);
  color: rgba(255, 255, 255, 1);
  padding: 18px 28px;
  margin-top: 75px;
  border: none;
  border-radius: 10px;

  font-family: "Inter";
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
}

.hidden-3 {
  display: none;
}

@media (max-width: 1024px) {
  .about {
    width: 900px;
    gap: 46px;
    padding: 0 0 125px;
  }

  .about-img img {
    width: 310px;
  }

  .hidden-2 {
    display: none;
  }

  .hidden-3 {
    display: block;
  }

  .green-btn {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .about {
    flex-direction: column-reverse;
    width: 322px;
    gap: 46px;
    padding: 0 0 60px;
  }

  .about-content {
    flex-direction: column-reverse;
    gap: 80px;
  }

  .about-text {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-text .description {
    margin-top: 0;
    text-align: center;
    margin-bottom: 50px;
  }

  .green-btn {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .about-text h2 {
    text-align: center;
    margin-top: 42px;
  }

  .about-text h2 span {
    font-size: 50px;
    line-height: 50px;
  }

  .about-img img {
    width: 100%;
  }

  .hidden-2 {
    display: none;
  }

  .hidden-3 {
    display: block;
  }
}


/*expert*/
.expert {
  background-color: rgba(239, 240, 235, 1);
  text-align: center;
  padding: 40px 0 100px;
  background-image: url(images/expert-background.png);
  background-size: 1500px;
  background-repeat: no-repeat;
  background-position: center;
}

.expert-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
}

.expert .line {
  border: 1px dashed rgba(255, 167, 192, 1);
  height: 262px;
}

.expert-1 {
  flex: 1;
  padding: 40px 40px;
}

.expert-1 img {
  height: 74px;
}

.expert-1 p {
  font-family: "EB Garamond";
  font-weight: 500;
  font-size: 28px;
  line-height: 33px;
  color: rgba(25, 85, 53, 1);
  margin-top: 46px;
}

.expert-image {
  margin-top: 14px;
  width: 1040px;
}

.image-mob {
  display: none;
}

@media (max-width: 1024px) {
  .expert {
    background-image: none;
  }

  .expert-icons {
    margin-top: 42px;
  }

  .expert .line {
    height: 184px;
  }

  .expert-1 {
    padding: 21px 28px;
  }

  .expert-1 img {
    height: 52px;
  }

  .expert-1 p {
    font-size: 19px;
    line-height: 24px;
    margin-top: 20px;
  }

  .expert-image {
    margin-top: 52px;
    width: 901px;
  }
}

@media (max-width: 768px) {
  .expert {
    background-image: none;
    padding: 40px 0 69px;
  }

  .expert h2 span {
    font-size: 50px;
    line-height: 50px;
  }

  .expert-icons {
    margin-top: 44px;
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .expert-image {
    display: none;
  }

  .image-mob {
    width: 100%;        /* или фикс ширина контейнера */
    height: 300px;      /* задаёшь нужную высоту */
    object-fit: cover;  /* заполняет контейнер, обрезая лишнее */
    object-position: center; /* всегда центр картинки */
    display: block;
    margin-top: 35px;
  }
}


/*review*/
.review {
  width: 1280px;
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  margin-top: 48px;
}

.arrow {
  background: none;
  border: none;
  font-size: 14px;
  color: rgba(37, 127, 79, 1);
  cursor: pointer;
}

.prev { margin-right: 30px; }
.next { margin-left: 30px; }

.slides {
  width: 1040px;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.review-text {
  font-family: "Inter";
  font-weight: 300;
  font-style: italic;
  font-size: 26px;
  line-height: 36px;
  color: rgba(4, 14, 8, 0.7);
  margin-bottom: 65px;
}

.review-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.name {
  font-family: "EB Garamond";
  font-weight: 500;
  font-size: 26px;
  line-height: 32px;
  color: rgba(25, 85, 53, 1);
}

.role {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: rgba(4, 14, 8, 0.7);
  margin-bottom: 4px;
}

.dots {
  margin-top: 16px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #d3d3d3;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #125031;
}

@media (max-width: 1024px) {
  .review {
    width: 900px;
  }

  .arrow {
    display: none;
  }
  .slides {
    width: 900px;
  }

  .review-text {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .role {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .review {
    width: 322px;
  }

  .review h2 span {
    font-size: 50px;
    line-height: 50px;
  }

  .slides {
    width: 322px;
  }

  .review-text {
    font-size: 18px;
  }
}


/*nutrition*/
.nutrition {
  position: relative;
  margin: 0 auto;
  padding: 100px 0;
}

.nutrition-column {
  display: flex;
}

.nutrition-images {
  flex:1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nutrition-images img {
  width: 600px;
  height: 320px;
}

.nutrition-content {
  flex:1;
  padding-left: 40px;
}

.accordion-container {
  margin-top: 43px;
}

.accordion-items {
  padding-left: 20px;
  border-left: 3px solid #878DE1;
  margin-bottom: 25px;
}

.accordion-items h3 {
  font-family: "EB Garamond";
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  color: rgba(25, 85, 53, 1);
}

.panel {
  display: none;
  padding-top: 30px;

  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: rgba(4, 14, 8, 0.7);
}

.panel.open {
  display: block;
}

.cta-btn {
  background: #257F4F;
  color: #fff;
  padding: 18px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;

  font-family: "Inter";
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
}

.nutrition .arrow-decor {
  position: absolute;
  top: 32px;
  left: 889px;
  transform: rotate(-90deg);
}

.nutrition .decor {
  position: absolute;
  width: 60px;
  bottom: 58px;
  left: 273px;
  transform: rotate(-90deg);
}

@media (max-width: 1024px) {
  .nutrition {
    width: 900px;
    padding: 0;
  }

  .nutrition-column {
    align-items: end;
  }

  .nutrition-images {
    flex:none;
    display: block;
  }

  .nutrition-images img {
    width: 331px;
    height: 530px;
  }

  .nutrition-content {
    padding-left: 26px;
  }

  .accordion-container {
    margin-top: 42px;
  }

  .cta-btn {
    margin-top: 16px;
  }

  .nutrition .arrow-decor {
    display: none;
  }

  .nutrition .decor {
    width: 106px;
    bottom: auto;
    top: 108px;
    left: 53px;
    transform: rotate(0deg);
  }
}

@media (max-width: 768px) {
  .nutrition {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .nutrition-images {
    display: none;
  }

  .nutrition h2 {
    text-align: center;
  }

  .nutrition h2 span {
    font-size: 50px;
    line-height: 50px;
  }

  .nutrition-content {
    padding-left: 0;
  }

  .cta-btn {
    display: none;
  }

  .image-mobile {
    width: 100%;
  }

  .nutrition .arrow-decor {
    display: none;
  }

  .nutrition .decor {
    display: none;
  }
}


/*price*/
.price {
  width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 0;
}

.price-bullet {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 40px 0;
  }

.price-item {
  display: flex;
  align-items: center;
  gap: 9px;

  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(4, 14, 8, 70%);
}

/* Переключатель */
.toggle {
  display: inline-flex;
  background: #ffffff;
  filter: drop-shadow(0px 5px 30px rgba(22,59,7,15%));
  border-radius: 10px;
  padding: 6px 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.toggle button {
  border: none;
  background: transparent;
  padding: 10px 16px;
  cursor: pointer;

  font-family: "Inter";
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
}

.toggle button.active {
  background: #257F4F;
  color: #fff;
  border-radius: 8px;
}

/* Тарифы */
.plans {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.plan {
  background: #EFF0EB;
  padding: 40px;
  border-radius: 20px;
  flex: 1;
  text-align: left;
}

.plan-description {
  display: flex;
  gap: 30px;
}

.plan-about, .plan-bullet {
  flex: 1;
}

.plan-about h3 {
  font-family: "EB Garamond";
  font-weight: 500;
  font-size: 26px;
  line-height: 32px;
  color: rgba(25, 85, 53, 1);
}

.plan .price-value {
  font-family: "EB Garamond";
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 20px;
  color: rgba(25, 85, 53, 1);
  margin: 4px 0 18px;
}

span.price-num {
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 66px;
}

.plan-about p {
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: rgba(4, 14, 8, 70%);
}

.plan-bullet {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.cancel {
  color: rgba(4, 14, 8, 70%);
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 9px;

  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}

.plan button {
  width: 100%;
  padding: 18px 25px;
  border: none;
  border-radius: 10px;
  background: #257F4F;
  color: #fff;
  margin-top: 40px;

  font-family: "Inter";
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
}

@media (max-width: 1024px) {
  .price {
    width: 900px;
    padding: 100px 0 70px;
  }

  .plan-description {
    gap: 15px;
  }

  .plan-about, .plan-bullet {
    flex: none;
  }

  .plan-about {
    width: 165px;
  }
}

@media (max-width: 768px) {
  .price {
    width: 100%;
    padding: 60px 0;
  }

  .price h2 {
    width: 322px;
    margin: 0 auto;
    padding-bottom: 20px;
  }

  .price h2 span {
    font-size: 50px;
    line-height: 50px;
  }

  .price-bullet {
    width: 322px;
    margin: 0 96px;
    flex-direction: column;
    gap: 8px;
  }

  .toggle {
    margin-top: 40px;
  }

  .plans {
    flex-direction: column;
    gap: 30px;
  }

  .plan {
    padding: 50px 40px;
    border-radius: 0px;
    flex: 1;
  }

  .plan-description {
    display: flex;
    gap: 0px;
  }

  .plan-about, .plan-bullet {
    flex: 1;
  }

  .plan-about h3 {
    font-size: 23px;
    line-height: 27px;
  }

  .plan .price-value {
    font-size: 15px;
    line-height: 17px;
  }

  span.price-num {
    font-size: 53px;
    line-height: 53px;
  }

  .plan-about p {
    font-size: 14px;
    line-height: 24px;
  }

  .plan-bullet {
    gap: 12px;
  }

  .bullet-item {
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
  }

}


/*СTA*/
.start {
  position: relative;
  background-color: rgba(239, 240, 235, 1);
  padding: 100px 0;
  background-color: #EFF0EB;
}

.start-column {
  display: flex;
}

.start-title, .start-cta {
  width: 640px;
}

.start-title {
  padding-right: 40px;
}

.start-cta {
  padding-left: 40px;
}

.start-cta .description {
  margin-top: 34px;
}

.start-step {
  margin-top: 47px;
  display: flex;
}

.start-step button {
  padding: 18px 28px;
  border: none;
  border-radius: 10px;
  background: #257F4F;
  color: #fff;
  margin-right: 27px;

  font-family: "Inter";
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
}

.clients {
  margin-left: 27px;
}

.clients span {
  font-family: "EB Garamond";
  font-weight: 500;
  font-size: 26px;
  line-height:32px;
  color: rgba(25, 85, 53, 1);
}

.clients p {
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  color: rgba(4, 14, 8, 70%);
}

.start .arrow-decor {
  position: absolute;
  left: 881px;
  top: 177px;
  width: 70px;
}

.step-item {
  display: flex;
}

@media (max-width: 1024px) {
  .start-column {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .start-title {
    width: 473px;
  }

  .start-cta {
    width: 400px;
  }

  .start-title h2 {
    font-size: 40px;
    line-height: 43px;
  }

  .start-title {
    padding-right: 0px;
  }

  .start-cta {
    padding-left: 0px;
  }

  .start-cta .description {
    margin-top: 0px;
    width: 386px;
  }

  .start-step {
    margin-top: 52px;
    align-items: center;
  }

  .clients {
    margin-left: 5px;
  }

  .start-step img {
    width: 95px;
    height: 28px;
  }

  .clients span {
    font-size: 14px;
    line-height:17px;
  }

  .clients p {
    font-size: 7px;
    line-height: 15px;
  }

  .start .arrow-decor {
    left: 473px;
    top: 47px;
  }
}

@media (max-width: 768px) {
  .start {
    padding: 60px 0;
  }

  .start-column {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }

  .start-title {
    width: 100%;
  }

  .start-cta {
    width: 100%;
  }

  .start-title h2 span {
    font-size: 50px;
    line-height: 50px;
  }

  .start-cta .description {
    margin-top: 40px;
    width: 100%;
  }

  .start-step {
    margin-top: 40px;
    flex-direction: column-reverse;
    align-items: start;
    gap: 15px;
  }

  .step-item {
    display: flex;
    align-items: center;
    gap: 21px;
  }

  .clients {
    margin-left: 5px;
  }

  .people {
    display: none;
  }

  .start-step img {
    width: 219px;
    height: 51px;
  }

  .start-step button {
    width: 100%;
  }

  .clients span {
    font-size: 26px;
    line-height:32px;
  }

  .clients p {
    font-size: 14px;
    line-height: 27px;
  }

  .start .arrow-decor {
    left: 187px;
    top: auto;
    bottom: 194px;
  }
}


/*FAQ*/
.faq {
  width: 1280px;
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
}

.faq-section__content-grid {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  width: 800px;
  margin: 0 auto;
}

.faq__item {
  padding: 30px 0;
  border-top: 1px solid rgba(4, 14, 8, 9%);
}

.faq__question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: "EB Garamond";
  font-weight: 500;
  font-size: 22px;
  line-height:26px;
  color: rgba(25, 85, 53, 1);
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__icon {
  width: auto;
  height: 21px;
  transition: transform 0.3s ease;
}

.faq__answer {
  display: none;
  font-family: "Inter";
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  color: rgba(4, 14, 8, 70%);
  margin-top: 20px;
}

.faq__item.active .faq__answer {
  display: block;
}

@media (max-width: 1024px) {
  .faq {
    width: 900px;
    padding: 100px 0 0;
  }
}

@media (max-width: 768px) {
  .faq {
    width: 322px;
    padding: 60px 0 0;
  }

  .faq-section__content-grid {
    padding-top: 60px;
    width: 322px;
  }

  .faq__question {
    gap: 20px;
  }
}



/*footer*/
  footer {
    margin-top: 60px;
    background: #0b2b16;
    background-image: url(images/footer.png);
    background-repeat: no-repeat;
    color: #fff;
    padding: 98px 0 20px;
  }

  .footer-main {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 50px;
  }

  .footer-navigation {
    width: 585px;
  }

  .footer-navigation h3 {
    font-family: "EB Garamond";
    font-weight: 500;
    font-size: 30px;
    line-height:36px;
    color: #fff;
  }

  .footer-navigation h3 span {
    font-style: italic;
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, #FEEF5E 100%);
  }

  .subscribe-form {
    margin: 40px 0 59px;
  }

  .subscribe-input {
    position: relative;
    width: 492px;
  }

  .subscribe-input input {
    width: 492px;
    padding: 18px 3px 18px 20px; /* справа оставляем место под кнопку */
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 15px;
  }

  .subscribe-input .btn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: #257F4F;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    cursor: pointer;
  }

  .footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .footer-links .links-column {
    flex: 1;
  }

  .footer-links .links-column h4 {
    font-family: "EB Garamond";
    font-weight: 500;
    font-size: 28px;
    line-height:34px;
    color: #fff;
    margin-bottom: 30px;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27.2px;
  }

  .footer-form {
    width: 497px;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    color: rgba(4, 14, 8, 70%);
  }

  .footer-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-form .field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-form input,
  .footer-form textarea {
    padding: 19px 26px;
    border: 1px solid rgba(4, 14, 8, 20%);
    border-radius: 10px;
    width: 100%;

    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
  }

  .footer-form textarea {
    min-height: 140px;
  }

  .footer-form .btn {
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    background: #257F4F;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    cursor: pointer;
  }

  footer .site {
    margin-top: 20px;
  }

  .policy {
    display: flex;
    gap: 40px;
  }

  .policy a {
    text-decoration: none;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    cursor: pointer;
  }

  .copyright {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 16%);

    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    color: rgba(255, 255, 255, 22%);
    text-align: center;
  }

  .hidden-5 {
    display: none;
  }

  @media (max-width: 1024px) {
    footer {
    margin-top: 75px;
    padding: 112px 0 20px;
  }

  .footer-main {
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-main img {
    margin-top: 162px;
    width: 293.2px;
    height: 281px;
  }

  .footer-form {
    display: none;
  }

  footer .site {
    margin-top: 20px;
  }

  .hidden-5 {
    display: block;
  }
}

  @media (max-width: 768px) {
    footer {
    margin-top: 87px;
    padding: 52px 0 30px;
  }

  .footer-main {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-navigation {
    width: 100%;
  }

  .subscribe-form {
    margin: 53px 0 94px;
  }

  .subscribe-input {
    position: relative;
    width: 100%;
  }

  .subscribe-input input {
    width: 100%;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .footer-form {
    display: block;
    width: 100%;
    padding: 50px 17px;
  }

  .copyright {
    margin-top: 40px;
  }

  .hidden-5 {
    display: none;
  }
}



