/* VARS */

:root {
  --font-base: "Satoshi", sans-serif;
  --font-header: "Plus Jakarta Sans", sans-serif;
}

/* VARS */

/* MOBILE */

.header {
  display: flex;
  padding: 22px 16px;
  z-index: 10;
  position: sticky;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
}

.header__nav {
  display: none;
}

.nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.nav__item > a,
.dropdown__list__item > a,
.dropdown__toggle {
  display: flex;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  font-family: var(--font-header);
  letter-spacing: -0.56px;
  color: #363434;
}

.header__btn {
  display: none;
  padding: 0 20px;
  gap: 12px;
  font-family: var(--font-header);
  font-size: 14px;
  letter-spacing: -0.56px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  color: #fff;
  background-color: #3f3bf8;
  border-radius: 100px;
  min-height: 40px;
  justify-content: center;
  align-items: center;
}

.mobile__menu {
  position: fixed;
  width: 100%;
  transition: 0.4s ease;
  z-index: 10;
  top: 60px;
  left: -100%;
  opacity: 0;
  background: white;
  padding: 0 16px;
  box-sizing: border-box;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile__menu.open {
  left: 0;
  opacity: 1;
}

.dropdown__item,
.dropdown__list__item {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* Style for top-level items without children (like Home) */
.dropdown__item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  margin: 0 -16px;
  width: calc(100% + 32px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #363434;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-header);
  letter-spacing: -0.56px;
  box-sizing: border-box;
}

.dropdown__list__item > a {
      padding-right: 33px !important;
      
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 16px 16px 32px;
  margin: 0 -16px;
  width: calc(100% + 32px);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  text-decoration: none;
  color: #667085;
  font-size: 14px;
}

.dropdown__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px;
  margin: 0 -16px;
  width: calc(100% + 32px);
  box-sizing: border-box;
}

.dropdown__list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin: 0 -16px;
  width: calc(100% + 32px);
}

.dropdown__item.open > .dropdown__list {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.dropdown__item.open .dropdown__toggle {
  color: #3f3bf8;
  font-weight: 700;
}

.dropdown__item.open .toggle__arrow {
  transform: rotate(180deg);
}

.menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.menu-open .menu__overlay {
  opacity: 1;
  pointer-events: all;
}

/* MOBILE */

/* DESKTOP */

@media screen and (min-width: 1024px) {
  .header {
    .mobile_menu {
      display: none;
    }
  }
  .header__nav {
    display: flex;
  }
  .header__btn {
    display: flex;
  }

  .header {
    padding: 27px 36px;
  }

  .header__burger {
    display: none;
  }

  .nav__item__list {
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 0;
    background-color: #fff;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    pointer-events: none;
    border: 1px solid rgba(46, 83, 14, 0.2);
    box-shadow: 0px 16px 32px 0px rgba(51, 51, 51, 0.05),
      0px 8px 16px 0px rgba(51, 51, 51, 0.05);
    border-radius: 10px;
    padding: 0 16px;
  }

  .nav__item.open .nav__item__list {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 0 16px;
    pointer-events: auto;
  }

  .nav__item.open > span {
    color: #3f3bf8;
    text-shadow: 0.1px 0 0 #000, -0.1px 0 0 #000;
  }

  .nav__item.open > img {
    transform: rotate(180deg);
  }

  .nav__item__list__item > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: max-content;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    font-family: var(--font-header);
    letter-spacing: -0.56px;
    padding: 20px 0;
    min-width: 305px;
    border-bottom: 1px solid #e7e7e7;
  }

  .nav__item {
    position: relative;
    padding: 14px 0;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }
}

/* DESKTOP */

/* HEADER */

/* HERO */

/* MOBILE */

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 16px;
  flex-direction: column;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url(../images/hero/bg.webp);
  background-repeat: no-repeat;
  background-position: right;
  padding-top: 0;
  margin-top: 50px;
}

.hero__info__block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.info__span {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-header);
  line-height: 120%;
  letter-spacing: -0.48px;
  color: #3f3bf8;
  padding: 5px 19px;
  background-color: #e7e7fa;
  border-radius: 100px;
  text-align: center;
}

.info__heading {
  text-align: center;
  font-family: var(--font-header);
  font-size: 36px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -1.44px;
}

.info__heading > span {
  font-weight: 700;
  color: #3f3bf8;
}

.info__text {
  color: rgba(5, 5, 5, 0.65);
  text-align: center;
  text-overflow: ellipsis;
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.48px;
}

.hero__btn__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.btn__explore {
  border-radius: 100px;
  background: #3f3bf8;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.48px;
  font-family: var(--font-header);
  text-align: center;
  gap: 12px;
}

.btn__contact {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 100px;
  border: 1px solid #050505;
  color: #050505;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.48px;
  font-family: var(--font-header);
  text-align: center;
}

/* MOBILE */

/* DESKTOP */

@media screen and (min-width: 1024px) {
  .hero {
    background-image: url(../images/hero/bg-desktop.webp);
    flex-direction: row;
    padding: 0 36px;
    justify-content: space-between;
    margin-top: 0;
  }

  .hero__info__block {
    max-width: 582px;
    align-items: start;
    gap: 15px;
  }

  .info__span,
  .info__text {
    font-size: 16px;
    letter-spacing: -0.64px;
  }

  .info__heading {
    font-size: 64px;
    letter-spacing: -2.56px;
    text-align: left;
  }

  .info__text {
    text-align: left;
  }

  .hero__btn__container {
    flex-direction: row;
    gap: 10.5px;
    justify-content: start;
    margin-bottom: 10px;
  }

  .btn__contact,
  .btn__explore {
    padding: 11.5px 20px;
    width: fit-content;
  }
}
/* DESKTOP */

/* HERO */

/* ADVANTAGES */

/* MOBILE */

.advantages {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 16px;
  gap: 30px;
}

.advantages__info__block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.info__heading--second {
  font-family: var(--font-header);
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.28px;
  text-align: center;
}

.advantages__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}

.advantages__list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.advantages__list__item > span {
  text-align: center;
  font-family: var(--font-header);
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.72px;
}

.advantages__list__item > h3 {
  text-align: center;
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.advantages__list__item > p {
  text-align: center;
  font-family: var(--font-base);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

/* MOBILE */

/* DESKTOP */

@media screen and (min-width: 1024px) {
  .advantages {
    padding: 90px 36px;
  }
  .info__heading--second {
    font-size: 36px;
    line-height: 130%;
    letter-spacing: -1.44px;
  }
  .advantages .info__text {
    max-width: 58%;
    text-align: center;
  }

  .advantages__info__block {
    gap: 15px;
  }
  .advantages__list {
    flex-direction: row;
    gap: 26px;
    align-items: start;
  }
  .advantages__list__item {
    max-width: 323px;
    align-items: start;
    justify-content: start;
    gap: 12px;
  }
  .advantages__list__item > span {
    text-align: left;
    font-size: 36px;
    letter-spacing: -0.72px;
  }
  .advantages__list__item > h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
    text-align: left;
    max-width: 270px;
  }
  .advantages__list__item:nth-child(3) > h3 {
    max-width: 178px;
  }
  .advantages__list__item:nth-child(4) > h3 {
    max-width: 237px;
  }
  .advantages__list__item > p {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    max-width: 323px;
  }
}

/* DESKTOP */

/* ADVANTAGES */

/* GENERATORS */

/* MOBILE */

.generators__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.generators__info__block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.generators__list__item {
  width: 342px;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px dashed rgba(46, 83, 14, 0.2);
}

.generators__list__item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 16px;
  width: 100%;
  box-sizing: border-box;
  color: #050505;
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.42px;
}

.generators__item__title {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  margin: 0;
  padding: 0;
}

/* Pagination styles for category archive */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 20px 0;
}

.page-numbers {
  display: inline-block;
  padding: 8px 12px;
  color: #050505;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(46, 83, 14, 0.2);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.page-numbers:hover {
  background-color: #2e530e;
  color: #fff;
  border-color: #2e530e;
}

.page-numbers.current {
  background-color: #2e530e;
  color: #fff;
  border-color: #2e530e;
}

.page-numbers.dots {
  border: none;
  padding: 8px 4px;
}

.page-numbers.prev,
.page-numbers.next {
  font-weight: 600;
}

/* MOBILE */

.generators {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 16px;
  gap: 30px;
}

/* MOBILE */

/* DESKTOP */

@media screen and (min-width: 1024px) {
  .generators {
    padding: 90px 36px;
    gap: 40px;
  }
  .generators__info__block {
    gap: 15px;
  }
  .generators .info__text {
    max-width: 58%;
    text-align: center;
  }
  .generators__list__item {
    width: 439px;
  }
  .generators__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .generators__list__item > a {
    font-size: 20px;
    letter-spacing: -0.42px;
  }
}

/* DESKTOP */

/* GENERATORS */

/* ADDITIONAL */

/* MOBILE */

.additional {
  padding: 50px 16px;
}

.additional__info__block {
  background-image: url(../images/additional/bg.webp);
  padding: 50px 12px;
  border-radius: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.additional__info__block > .info__span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.additional__info__block > .info__heading--second {
  color: #fff;
}

.additional__info__block > .info__text {
  color: rgba(255, 255, 255, 0.65);
}

.additional__btn {
  margin-top: 10px;
  border-radius: 100px;
  border: 1px solid #fff;
  padding: 6px 20px;
  color: #fff;
  text-align: center;
  font-family: var(--font-header);
  font-size: 12px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.48px;
}

/* MOBILE */

/* DESKTOP */

@media screen and (min-width: 1024px) {
  .additional {
    padding: 50px 40px;
  }

  .additional__info__block {
    gap: 15px;
  }

  .additional__info__block > .info__text {
    max-width: 61%;
    text-align: center;
  }

  .additional__info__block > .info__heading--second {
    font-size: 48px;
    letter-spacing: -1.92px;
  }
}

/* DESKTOP */

/* ADDITIONAL */

/* FOOTER */

/* MOBILE */

.footer {
  color: #fff;
  background-color: #050505;
  padding: 50px 15px 5px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-direction: column;
}

.footer__info__block {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 30px;
  flex-direction: column;
  margin-bottom: 35px;
}

.footer__icons__block {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.footer__icons__block > a {
  display: inline-block;
  line-height: 0;
}

.footer__logo {
  display: block;
  max-width: 200px;
  height: auto;
}

.footer__info__text {
  color: #fff;
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.75;
  margin-bottom: 5px;
}

.footer__links__list {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 5px;
}

.footer__links__list .links__list__item:nth-child(1) {
  color: #fff;
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.48px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.footer__links__list .links__list__item {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-base);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.footer__ad__block {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 10px;
  max-width: 318px;
}

.footer__ad__span {
  margin-bottom: 5px;
  color: #fff;
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.48px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.footer__contacts__list {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}

.contacts__list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.75;
  gap: 20px;
}

.footer__info {
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  font-family: var(--font-base);
  font-size: 10px;
  font-weight: 300;
  line-height: 15px;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-base);
  font-size: 10px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
}

.footer__icons__list {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 25px;
}

.icons__list__item > a > img {
  height: 16px;
}

.icons__list__item {
  cursor: pointer;
}

/* MOBILE */

/* DESKTOP */

@media screen and (min-width: 1024px) {
  .footer__info__block {
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 90px;
  }

  .footer {
    padding: 90px 35px 15px 35px;
  }
  .footer__icons__block {
    max-width: 324px;
    margin-right: 410px;
  }

  .footer__ad__span,
  .footer__links__list > .links__list__item:nth-child(1) {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
}

/* DESKTOP */

/* FOOTER */

/* ABOUT.HTML */

/* GENERATOR */

/* MOBILE */

.generator__heading {
  color: #000;
  font-family: var(--font-header);
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.28px;
  text-align: center;
}

.generator__heading > span {
  color: #3f3bf8;
  font-weight: 700;
}

.generator {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 16px;
  gap: 10px;
  background-color: #F7F7F7;
}

.generator__info {
  color: rgba(5, 5, 5, 0.75);
  text-align: center;
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 15px;
}

.generator__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  border-radius: 15px;
  border: 1px solid rgba(136, 139, 147, 0.3);
  gap: 25px;
}

.generator__container__options {
  border-radius: 15px;
  border: 1px dashed rgba(63, 59, 248, 0.25);
  background: rgba(63, 59, 248, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding: 35px 20px;
}

.options__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.options__container > span {
  color: #050505;
  text-align: center;
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.48px;
}

.options__btns__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.options__btns__list button {
  border-radius: 100px;
  border: 1px solid #050505;
  width: 283px;
  height: 35px;
  color: #050505;
  font-family: var(--font-header);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
  letter-spacing: -0.48px;
}

.options__btns__list .btns__list__item:not(:nth-child(1)) {
  opacity: 0.5;
}

.generator__btn--generate {
  width: 283px;
  height: 35px;
  border-radius: 100px;
  border: 1px solid #3f3bf8;
  background: rgba(63, 59, 248, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #3f3bf8;
  text-align: center;
  font-family: var(--font-header);
  font-size: 12px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.48px;
}

.generator__btn--generate img {
  fill: #3f3bf8;
}

.generator__container__results {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  width: 100%;
}

.generator__container__results > span {
  color: #000;
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.8px;
  margin-bottom: 5px;
}

.results__list {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  gap: 0;
}

.result__text {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 5px;
  flex-direction: column;
}

.result__name {
  color: #050505;
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.48px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.result__info {
  color: rgba(5, 5, 5, 0.65);
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.36px;
  max-width: 180px;
}

.result > button {
  display: flex;
  padding: 0 20px;
  height: 35px;
  border-radius: 100px;
  border: 1px solid rgba(5, 5, 5, 0.5);
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: rgba(5, 5, 5, 0.5);
  text-align: center;
  font-family: var(--font-header);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 14.4px */
  letter-spacing: -0.48px;
}

.result {
  padding: 15px 0;
  border-bottom: 1px solid #e7e7e7;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 15px;
}

.result:nth-child(5) {
  border: 0;
}

.generator__text {
  color: rgba(5, 5, 5, 0.75);
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  width: 343px;
}

.generator__text:last-child {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 30px;
}

/* MOBILE */

/* DESKTOP */

@media screen and (min-width: 1024px) {
  .generator__heading {
    font-size: 40px;
    line-height: 130%;
    letter-spacing: -1.6px;
  }

  .generator__info {
    font-size: 16px;
    max-width: 904px;
  }

  .generator__container__options {
    padding: 35px 30px;
    flex-direction: row;
    gap: 292px;
  }

  .generator__container {
    margin-top: 15px;
    margin-bottom: 25px;
  }

  .btns__list__item > button {
    padding: 6px 20px;
    width: max-content;
    height: min-content;
  }

  .options__btns__list {
    flex-direction: row;
  }

  .options__container > span {
    font-size: 24px;
    letter-spacing: -0.72px;
  }

  .generator__btn--generate {
    font-size: 14px;
    letter-spacing: -0.56px;
    width: 177px;
  }

  .generator__container__results > span {
    font-size: 28px;
    letter-spacing: -1.12px;
  }

  .generator__container__results {
    margin: 0 20px;
    width: max-content;
    padding: 30px 20px;
    align-self: baseline;
  }

  .result__name {
    font-size: 20px;
    letter-spacing: -0.6px;
  }

  .result__text {
    gap: 10px;
  }

  .result__info {
    font-size: 16px;
    letter-spacing: -0.48px;
    max-width: 250px;
  }
  .result {
    flex-direction: row;
    gap: 439px;
  }

  .generator__text {
    font-size: 16px;
    width: 904px;
    margin: 0 auto;
  }
}

/* DESKTOP */

/* GENERATOR */

/* ARTICLES */

/* MOBILE */

.articles {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 10px;
  padding: 30px 16px 0 16px;
  border-top: 1px solid #e7e7e7;
  margin-top: 30px;
  text-align: left;
  align-self: stretch;
  width: 100%;
}

.articles__title {
  color: #050505;
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.6px;
}

.articles__texts > article,
.articles p {
  color: rgba(5, 5, 5, 0.75);
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
}

.articles__texts {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
  flex-direction: column;
}
table {
  border-collapse: separate; /* чтобы скругления работали */
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  margin-top: 20px;
  background-color: #fff;
}

thead tr {
  background: rgba(63, 59, 248, 0.1);
}

thead tr th {
  background: rgba(63, 59, 248, 0.1);
}

thead tr th:first-child {
  border-top-left-radius: 11px;
}

thead tr th:last-child {
  border-top-right-radius: 11px;
}

tbody tr:last-child td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

tr > td {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-left: none;
  border-right: none;
  border-top: none;
  color: #050505;
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 500;
}


tr > th {
  padding: 12px 10px;
  text-align: left;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #050505;
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
}

.table__section {
  border-bottom: 0;
}

/* MOBILE */

/* DESKTOP */

@media screen and (min-width: 1024px) {
  .articles > img {
    margin: 0 auto;
  }

  .articles {
    padding: 50px 0 0 0;
    max-width: 904px;
    margin: 0 auto;
    gap: 15px;
    margin-top: 40px;
    text-align: left;
    align-self: stretch;
    width: 100%;
  }

  .articles__title {
    font-size: 24px;
    letter-spacing: -0.72px;
  }
  .articles__texts {
    gap: 15px;
  }

  .articles__texts > article,
  .articles p {
    font-size: 16px;
  }

  .articles > img {
    margin-top: 25px;
  }

  tr > th {
    font-size: 16px;
  }

  tr > td {
    font-size: 14px;
  }
}

/* DESKTOP */

/* ARTICLES */

/* GENERATORS */

/* MOBILE */

.generators {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}

.generators__heading {
  color: #000;
  font-family: var(--font-header);
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1.28px;
  text-transform: capitalize;
  text-align: center;
}

/* MOBILE */

/* DESKTOP */

@media screen and (min-width: 1024px) {
  .generators__heading {
    font-weight: 700;
  }

  .generators {
    gap: 40px;
  }
}

/* DESKTOP */

/* GENERATORS */

/* CONTACT PAGE */
.contact-section {
  padding: 50px 16px;
  min-height: calc(100vh - 200px);
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact__info__block {
  text-align: center;
  margin-bottom: 50px;
}

.contact__info__block .info__span {
  color: #2e530e;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.34px;
  display: block;
  margin-bottom: 10px;
}

.contact__heading {
  color: #050505;
  font-family: var(--font-header);
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.96px;
  margin-bottom: 15px;
}

.contact__description {
  color: #606760;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  max-width: 600px;
  margin: 0 auto;
}

.contact__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact__form__wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  color: #050505;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.form__input,
.form__textarea {
  padding: 12px 16px;
  border: 1px solid rgba(46, 83, 14, 0.2);
  border-radius: 8px;
  font-family: var(--font-base);
  font-size: 14px;
  color: #050505;
  background: #fff;
  transition: border-color 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #2e530e;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  background: #2e530e;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.form__submit:hover {
  background: #1e3507;
}

.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form__message {
  display: none;
  margin-top: 20px;
}

.form__message p {
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-base);
  font-size: 14px;
}

.form__message .success {
  background: #e8f5e9;
  color: #2e530e;
  border: 1px solid #2e530e;
}

.form__message .error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #c62828;
}

.contact__info {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
}

.contact__info__heading {
  color: #050505;
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 25px;
}

.contact__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact__icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact__detail__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__label {
  color: #606760;
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}

.contact__value {
  color: #050505;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
}

.contact__value:hover {
  color: #2e530e;
}

.contact__social {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(46, 83, 14, 0.1);
}

.contact__social__label {
  color: #050505;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  display: block;
  margin-bottom: 15px;
}

.contact__social__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.contact__social__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #2e530e;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.contact__social__item a:hover {
  background: #1e3507;
}

.contact__social__item img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* Tablet styles */
@media (min-width: 768px) {
  .contact-section {
    padding: 70px 36px;
  }
  
  .contact__heading {
    font-size: 40px;
    letter-spacing: -1.2px;
  }
  
  .contact__content {
    flex-direction: row;
    gap: 40px;
  }
  
  .contact__form__wrapper {
    flex: 1.5;
    padding: 40px;
  }
  
  .contact__info {
    flex: 1;
    padding: 40px;
  }
  
  .form__submit {
    align-self: flex-start;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .contact-section {
    padding: 90px 36px;
  }
  
  .contact__heading {
    font-size: 48px;
    letter-spacing: -1.44px;
  }
  
  .contact__info__block {
    margin-bottom: 60px;
  }
  
  .contact__content {
    gap: 60px;
  }
  
  .form__group {
    gap: 10px;
  }
  
  .form__label {
    font-size: 15px;
  }
  
  .form__input,
  .form__textarea {
    font-size: 15px;
    padding: 14px 18px;
  }
}

/* ABOUT.HTML */
