ul {
text-align: left;
}    
.hero__email-form {
  display: flex;
  align-items: center;
}
.hero__email-form .btn {
  margin-left: 10px;
}

.hero__email-input {
  padding: 11px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  background-color: var(--color-background-light);
  color: var(--color-text-dark);
  border: 1px solid var(--color-primary-light);
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}
.hero__email-input:focus {
  border-color: var(--color-primary-deep);
}
.hero__form-message {
  font-size: 16px;
  font-weight: 500;
  min-height: 24px; 
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

/* На мобильных, где текст по центру, сообщение тоже будет по центру */
@media (max-width: 992px) {
  .hero__form-message {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero__email-form {
    /* Меняем направление с горизонтального на вертикальное */
    flex-direction: column;
    /* Центрируем элементы по горизонтали */
    align-items: center;
    /* Добавляем отступ между полем и кнопкой */
    gap: 15px;
  }

  .hero__email-input,
  .hero__email-form .btn {
    /* Растягиваем оба элемента на всю ширину родителя */
    width: 100%;
    /* Ограничиваем максимальную ширину, чтобы не выглядело слишком громоздко */
    max-width: 350px;
    margin-left: 0; /* Убираем ваш инлайновый отступ для кнопки */
  }
}

/* CSS for section section:Header */
.header {
  padding: 26px 0;
  background-color: var(--color-background-light);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border-light);
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  position: relative;
  width: 130px;
  height: 32px;
}
.header__logo img {
  position: absolute;
}
.header__logo img:nth-child(1) {
  top: 4.57px;
  left: 12.46px;
  width: 117.54px;
  height: 27.43px;
}
.header__logo img:nth-child(2) {
  top: 4.57px;
  left: 0;
  width: 8.54px;
  height: 7.29px;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-list a {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--color-primary-medium);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s;
}
.header__nav-list a:hover {
  color: var(--color-primary-deep);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 992px) {
  .header__nav, .header__actions {
    display: none;
  }
  .header__mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .header__mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-dark);
  }
}

/* CSS for section section:Hero */
.hero-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero__wrapper {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  border-radius: 30px;
  padding: 104px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 104px;
}
.hero__content {
  max-width: 582px;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: 'Inter', 'JUST Sans', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -0.52px;
  margin: 0 0 24px 0;
  color: var(--color-primary-pale);
}
.hero__title--highlight {
  color: var(--color-background-light);
}
.hero__subtitle {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: var(--color-primary-pale);
  margin: 0 0 56px 0;
}
.hero__actions {
  display: flex;
  gap: 20px;
}
.hero__visual {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 1200px;
  height: 1200px;
  z-index: 1;
}
.hero__visual-group {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero__brands {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.hero__brand-item {
  border: 1px solid var(--color-primary-light);
  padding: 2px 24px;
  flex: 1;
  border-radius: 8px;
}
.hero__brand-item p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.2px;
  color: var(--color-text-light);
  font-weight: 500;
  max-width: 200px;
}
@media (max-width: 1200px) {
  .hero__visual {
    right: -300px;
  }
}
@media (max-width: 992px) {
  .hero__wrapper {
    padding: 60px 40px;
    text-align: center;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__visual {
    opacity: 0.3;
    top: 0;
    right: -400px;
  }
  .hero__brands {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 40px;
    line-height: 48px;
  }
  .hero__wrapper {
    padding: 40px 20px;
  }
}

/* CSS for section section:Feature1 */
.feature-container {
  display: flex;
  align-items: center;
  gap: 120px;
}
.feature-text {
  flex: 1;
  max-width: 556px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-text-internal {
  flex: 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-text__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.4px;
  color: var(--color-primary-deep);
  margin: 0;
}
.feature-text__description {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-gray);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-text__description p {
  margin: 0;
}
.feature-text__actions {
  margin-top: 48px;
  display: flex;
  gap: 20px;
}
.feature-visual {
  flex: 1;
  max-width: 480px;
  height: 576px;
  position: relative;
  background-color: #160e24;
  border-radius: 16px;
  overflow: hidden;
}
.feature-visual img {
  object-fit: contain;
}
.visual-bg-1 {
  position: absolute;
  top: -213px;
  left: -94px;
  width: 669px;
  height: 1002px;
  opacity: 0.5;
}
.visual-bg-2 {
  position: absolute;
  top: -213px;
  left: -94px;
  width: 669px;
  height: 1002px;
  opacity: 0.5;
  transform: rotate(180deg);
}
@media (max-width: 992px) {
  .feature-text {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .feature-text__actions {
    justify-content: center;
  }
  .feature-visual {
    max-width: 100%;
    height: 400px;
  }
}

/* CSS for section section:Feature2 */
#feature2 .feature-container {
  /*flex-direction: row-reverse;*/
}
.feature-visual--light {
  background-color: rgba(223, 226, 230, 0.5);
}
.feature-visual--light img[alt="Card element"] {
  border: 1px solid #f5f7f8;
}

/* CSS for section section:FAQ */
.faq-container {
  display: flex;
  gap: 120px;
  align-items: flex-start;
}
.faq-summary {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 607px;
}
.faq-summary__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  color: var(--color-primary-deep);
  margin: 0 0 24px 0;
}
.faq-summary__description {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-gray);
  margin: 0;
}
.faq-summary__contact {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-gray);
}
.faq-summary__contact a {
  color: var(--color-text-gray);
  font-weight: 600;
  text-decoration: underline;
}
.faq-list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border-dark);
}
.faq-item:first-child {
  padding-top: 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item__header {
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}
.faq-item__number {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-border-dark);
}
.faq-item__question {
  flex-grow: 1;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-primary-deep);
  margin: 0;
}
.faq-item__icon {
  width: 24px;
  height: 24px;
}
.faq-item__answer {
  padding-left: 56px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-gray);
}
.faq-item__answer p {
  margin: 0;
  max-width: 676px;
}
@media (max-width: 992px) {
  .faq-summary {
    width: 100%;
    height: auto;
    text-align: center;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .faq-item__question {
    font-size: 18px;
    line-height: 26px;
  }
  .faq-item__number {
    font-size: 20px;
  }
}

/* CSS for section section:Footer */
.footer {
  background-color: var(--color-background-offwhite);
  padding: 56px 0;
  color: var(--color-text-gray);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}
.footer__top-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.52px;
  margin: 0;
  max-width: 1130px;
}
.footer__top-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}
.footer__divider {
  border: none;
  height: 1px;
  background-color: var(--color-border-medium);
  margin: 0;
}
.footer__main {
  display: flex;
  gap: 120px;
  padding: 56px 0;
}
.footer__about {
  width: 180px;
  flex-shrink: 0;
}
.footer__logo {
  position: relative;
  width: 130px;
  height: 32px;
  display: block;
  margin-bottom: 12px;
}
.footer__logo img {
  position: absolute;
}
.footer__logo img:nth-child(1) {
  top: 4.57px;
  left: 12.46px;
  width: 117.54px;
  height: 27.43px;
}
.footer__logo img:nth-child(2) {
  top: 4.57px;
  left: 0;
  width: 8.54px;
  height: 7.29px;
}
.footer__about p {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.footer__links {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  gap: 20px;
}
.footer__links-column h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #777d8b;
  margin: 0 0 20px 0;
}
.footer__links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__links-column a {
  text-decoration: none;
  color: var(--color-text-gray);
  font-size: 16px;
  line-height: 24px;
  transition: color 0.3s;
}
.footer__links-column a:hover {
  color: var(--color-text-dark);
}
.footer__bottom {
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
}
.footer__legal, .footer__social {
  display: flex;
  gap: 32px;
}
.footer__legal a, .footer__social a {
  text-decoration: none;
  color: var(--color-text-gray);
  transition: color 0.3s;
}
.footer__legal a:hover, .footer__social a:hover {
  color: var(--color-text-dark);
}
.footer__copyright {
  margin: 0;
}
@media (max-width: 992px) {
  .footer__main {
    align-items: center;
    text-align: center;
  }
  .footer__links {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }
  .footer__links-column {
    width: 100%;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer__top-title {
    font-size: 32px;
    line-height: 40px;
  }
  .footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}