@charset "UTF-8";

textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

p,
span,
div {
  letter-spacing: 1px;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: normal;
  background: none;
  border: none;
  outline: none;
}

@font-face {
  font-family: "Manrope";
  src: url("/Manrope-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Manrope";
  overflow-x: hidden;
}


.header-wordconnect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #fdf6e3, #f4e3c2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 100;
  font-family: 'Manrope', sans-serif;
}

.header-wordconnect__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-wordconnect__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #5b4636;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-wordconnect__logo img {
  width: 34px;
  height: 34px;
}

.header-wordconnect__nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.header-wordconnect__nav a {
  color: #5b4636;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.header-wordconnect__nav a:hover {
  color: #a87b56;
}

.header-wordconnect__cta {
  background: linear-gradient(135deg, #e7b67a, #a97b50);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.header-wordconnect__cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #eec98c, #b78959);
}

.header-wordconnect__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.header-wordconnect__burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #5b4636;
  border-radius: 2px;
}

/* mobile */
@media (max-width: 800px) {
  .header-wordconnect__nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fffaf2;
    flex-direction: column;
    text-align: center;
    display: none;
  }

  .header-wordconnect__nav.active {
    display: flex;
  }

  .header-wordconnect__nav ul {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem 0;
  }

  .header-wordconnect__burger {
    display: flex;
  }
}

.hero-wordconnect {
  background: linear-gradient(180deg, #fffaf2 0%, #f6ebd3 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-wordconnect__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-wordconnect__text {
  flex: 1 1 480px;
}

.hero-wordconnect__text h1 {
  font-size: 2.8rem;
  color: #4b3726;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  font-weight: 800;
}

.hero-wordconnect__text p {
  color: #5f4b38;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.hero-wordconnect__cta {
  display: inline-block;
  background: linear-gradient(135deg, #e7b67a, #a97b50);
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(169, 123, 80, 0.4);
}

.hero-wordconnect__cta:hover {
  background: linear-gradient(135deg, #f0ca94, #b98a59);
  transform: translateY(-3px);
}

.hero-wordconnect__image {
  flex: 1 1 460px;
  text-align: right;
}

.hero-wordconnect__image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* mobile */
@media (max-width: 900px) {
  .hero-wordconnect__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-wordconnect__image {
    text-align: center;
    margin-top: 2rem;
  }

  .hero-wordconnect__text h1 {
    font-size: 2.2rem;
  }
}

.features-wordconnect {
  background: linear-gradient(180deg, #f6ebd3 0%, #fdf6e3 100%);
  color: #4b3726;
  padding: 100px 0;
}

.features-wordconnect__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.features-wordconnect__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5f4b38;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.features-wordconnect__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.features-wordconnect__item {
  background: #fffaf2;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-wordconnect__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.features-wordconnect__icon {
  margin-bottom: 1rem;
}

.features-wordconnect__icon svg {
  width: 48px;
  height: 48px;
}

.features-wordconnect__item h3 {
  font-size: 1.3rem;
  color: #4b3726;
  margin-bottom: 0.8rem;
}

.features-wordconnect__item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #5f4b38;
}

/* адаптив */
@media (max-width: 700px) {
  .features-wordconnect__item {
    padding: 1.6rem;
  }

  .features-wordconnect__item h3 {
    font-size: 1.15rem;
  }
}


.how-wordconnect {
  background: linear-gradient(180deg, #fdf6e3 0%, #f4e3c2 100%);
  padding: 140px 0;
}

.how-wordconnect__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  flex-wrap: wrap;
}

.how-wordconnect__text {
  flex: 0 1 420px;
  color: #4b3726;
  z-index: 2;
}

.how-wordconnect__text h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.how-wordconnect__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5f4b38;
  margin-bottom: 2rem;
}

.how-wordconnect__steps {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.how-wordconnect__steps li {
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #4b3726;
}

.how-wordconnect__steps span {
  display: inline-block;
  min-width: 30px;
  height: 30px;
  background: #e7b67a;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 0.9rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.how-wordconnect__footer {
  font-size: 1.05rem;
  color: #5f4b38;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.how-wordconnect__cta {
  display: inline-block;
  background: linear-gradient(135deg, #e7b67a, #a97b50);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(169,123,80,0.4);
}

.how-wordconnect__cta:hover {
  background: linear-gradient(135deg, #f0ca94, #b98a59);
  transform: translateY(-3px);
}

.how-wordconnect__visual {
  flex: 0 1 520px;
  text-align: center;
  position: relative;
}

.how-wordconnect__visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

/* адаптив */
@media (max-width: 1100px) {
  .how-wordconnect__inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .how-wordconnect__visual img {
    max-width: 440px;
    transform: scale(1.05);
  }

  .how-wordconnect__text {
    max-width: 600px;
  }
}

@media (max-width: 700px) {
  .how-wordconnect {
    padding: 100px 0;
  }

  .how-wordconnect__text h2 {
    font-size: 2.2rem;
  }

  .how-wordconnect__visual img {
    max-width: 340px;
    transform: scale(1);
  }
}
.faq-wordconnect {
  background: linear-gradient(180deg, #f4e3c2 0%, #fffaf2 100%);
  padding: 120px 0;
  color: #4b3726;
}

.faq-wordconnect__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-wordconnect h2 {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}

.faq-wordconnect__intro {
  text-align: center;
  color: #5f4b38;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.faq-item {
  background: #fffaf2;
  border: 1px solid rgba(169,123,80,0.25);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-color: rgba(169,123,80,0.4);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #4b3726;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: background 0.25s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  color: #a97b50;
  font-size: 1.4rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
  color: #d19b67;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  background: rgba(255,255,255,0.5);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.faq-answer p {
  padding: 1rem 1.5rem 1.5rem;
  color: #5f4b38;
  font-size: 1rem;
  line-height: 1.7;
}

/* адаптив */
@media (max-width: 700px) {
  .faq-wordconnect h2 {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 1rem 1.2rem;
  }
}
.inspire-wordconnect {
  background: linear-gradient(180deg, #fffaf2 0%, #f6ebd3 100%);
  padding: 120px 0;
  color: #4b3726;
  position: relative;
}

.inspire-wordconnect__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.inspire-wordconnect h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.inspire-wordconnect__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5f4b38;
  margin: 0 auto 3rem;
  max-width: 700px;
}

.inspire-wordconnect__quotes {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

.inspire-quote {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  padding: 2rem 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inspire-quote::before {
  content: "❝";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 3rem;
  color: rgba(169,123,80,0.15);
  pointer-events: none;
}

.inspire-quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.inspire-quote__text {
  font-size: 1.2rem;
  font-style: italic;
  color: #4b3726;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.inspire-quote__author {
  font-size: 0.95rem;
  color: #a97b50;
}

/* адаптив */
@media (max-width: 700px) {
  .inspire-wordconnect h2 {
    font-size: 2rem;
  }

  .inspire-quote {
    padding: 1.6rem;
  }

  .inspire-quote__text {
    font-size: 1.05rem;
  }
}
.footer-wordconnect {
  background: linear-gradient(180deg, #f6ebd3 0%, #fdf6e3 100%);
  border-top: 1px solid rgba(169,123,80,0.25);
  padding: 60px 0 40px;
  color: #4b3726;
  text-align: center;
}

.footer-wordconnect__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.footer-wordconnect__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #4b3726;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-wordconnect__logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-wordconnect__text {
  font-size: 0.95rem;
  color: #5f4b38;
  line-height: 1.6;
}

.footer-wordconnect__links {
  display: flex;
  gap: 1.5rem;
}

.footer-wordconnect__links a {
  color: #a97b50;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer-wordconnect__links a:hover {
  color: #d19b67;
}

@media (max-width: 600px) {
  .footer-wordconnect__links {
    flex-direction: column;
    gap: 0.6rem;
  }
}
.about-wordconnect {
  background: linear-gradient(180deg, #fffaf2 0%, #f6ebd3 100%);
  color: #4b3726;
  font-family: 'Manrope', sans-serif;
}

/* intro */
.about-wordconnect__intro {
  padding: 160px 0 100px;
  text-align: center;
}

.about-wordconnect__intro h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.about-wordconnect__intro p {
  font-size: 1.1rem;
  color: #5f4b38;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 1.2rem;
}

/* common inner */
.about-wordconnect__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* idea / experience */
.about-wordconnect__idea,
.about-wordconnect__experience {
  padding: 100px 0;
}

.about-wordconnect__idea .about-wordconnect__text,
.about-wordconnect__experience .about-wordconnect__text {
  flex: 1 1 500px;
}

.about-wordconnect__text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-wordconnect__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5f4b38;
  margin-bottom: 1rem;
}

.about-wordconnect__visual {
  flex: 1 1 480px;
  text-align: center;
}

.about-wordconnect__visual img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  object-fit: cover;
}

.about-wordconnect__experience .about-wordconnect__inner {
  flex-direction: row-reverse;
}

/* mobile */
@media (max-width: 900px) {
  .about-wordconnect__inner {
    flex-direction: column;
    text-align: center;
  }

  .about-wordconnect__visual img {
    max-width: 340px;
    margin-top: 1.5rem;
  }

  .about-wordconnect__text h2 {
    font-size: 2rem;
  }
}

.faq-page-wordconnect {
  background: linear-gradient(180deg, #fffaf2 0%, #f6ebd3 100%);
  color: #4b3726;
  font-family: 'Manrope', sans-serif;
}

/* intro */
.faq-page-wordconnect__intro {
  padding: 160px 0 80px;
  text-align: center;
}

.faq-page-wordconnect__intro h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.faq-page-wordconnect__intro p {
  font-size: 1.1rem;
  color: #5f4b38;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}

/* faq list */
.faq-page-wordconnect__list {
  padding: 80px 0 120px;
}

.faq-page-wordconnect__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-page-wordconnect__item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-page-wordconnect__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.faq-page-wordconnect__item h2 {
  font-size: 1.3rem;
  color: #4b3726;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.faq-page-wordconnect__item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5f4b38;
}

/* mobile */
@media (max-width: 700px) {
  .faq-page-wordconnect__intro h1 {
    font-size: 2rem;
  }

  .faq-page-wordconnect__item {
    padding: 1.6rem;
  }

  .faq-page-wordconnect__item h2 {
    font-size: 1.15rem;
  }
}
.modes-wordconnect {
  background: linear-gradient(180deg, #fffaf2 0%, #f6ebd3 100%);
  color: #4b3726;
  font-family: 'Manrope', sans-serif;
}

.modes-wordconnect__intro {
  padding: 160px 0 80px;
  text-align: center;
}

.modes-wordconnect__intro h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.modes-wordconnect__intro p {
  font-size: 1.1rem;
  color: #5f4b38;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}

.modes-wordconnect__grid {
  padding: 80px 0 120px;
}

.modes-wordconnect__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.mode-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  padding: 2rem 1.8rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mode-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.mode-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(231,182,122,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mode-card__icon svg {
  width: 32px;
  height: 32px;
}

.mode-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #4b3726;
}

.mode-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #5f4b38;
}

/* адаптив */
@media (max-width: 700px) {
  .modes-wordconnect__intro h1 {
    font-size: 2rem;
  }

  .mode-card {
    padding: 1.6rem;
  }

  .mode-card h2 {
    font-size: 1.2rem;
  }
}
.download-wordconnect {
  background: linear-gradient(180deg, #fffaf2 0%, #f6ebd3 100%);
  color: #4b3726;
  font-family: 'Manrope', sans-serif;
}

/* intro */
.download-wordconnect__intro {
  padding: 160px 0 80px;
  text-align: center;
}

.download-wordconnect__intro h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.download-wordconnect__intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5f4b38;
  max-width: 740px;
  margin: 0 auto;
}

/* form + aside */
.download-wordconnect__form {
  padding: 80px 0 140px;
}

.download-wordconnect__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

.download-wordconnect__content {
  flex: 1 1 520px;
}

.download-wordconnect__content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.download-wordconnect__content p {
  font-size: 1.05rem;
  color: #5f4b38;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.download-wordconnect__content form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.download-wordconnect__content input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1px solid #d7c4a3;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  color: #4b3726;
  outline: none;
  transition: border 0.2s ease;
}

.download-wordconnect__content button {
  padding: 0.9rem 1.6rem;
  background: linear-gradient(135deg, #e7b67a, #a97b50);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.download-wordconnect__content button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f0ca94, #b98a59);
}

/* popup */
.popup-wordconnect {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.popup-wordconnect__content {
  background: #fffaf2;
  border-radius: 12px;
  padding: 2rem 3rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.popup-wordconnect__content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #4b3726;
}

.popup-wordconnect__content button {
  background: linear-gradient(135deg, #e7b67a, #a97b50);
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 0.7rem 1.6rem;
  font-weight: 700;
  cursor: pointer;
}

/* aside */
.download-wordconnect__aside {
  flex: 1 1 400px;
  background: #fffaf2;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 22px rgba(0,0,0,0.05);
}

.download-wordconnect__aside h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.download-wordconnect__aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-wordconnect__aside li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5f4b38;
  margin-bottom: 0.6rem;
}

/* адаптив */
@media (max-width: 900px) {
  .download-wordconnect__inner {
    flex-direction: column;
    align-items: center;
  }

  .download-wordconnect__aside {
    width: 100%;
    max-width: 500px;
  }

  .download-wordconnect__content form {
    flex-direction: column;
    align-items: stretch;
  }

  .download-wordconnect__content input,
  .download-wordconnect__content button {
    width: 100%;
  }
}
.privacy-wordconnect {
  background: linear-gradient(180deg, #fffaf2 0%, #f6ebd3 100%);
  color: #4b3726;
  font-family: 'Manrope', sans-serif;
}

/* intro */
.privacy-wordconnect__intro {
  padding: 160px 0 80px;
  text-align: center;
}

.privacy-wordconnect__intro h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.privacy-wordconnect__intro p {
  font-size: 1.1rem;
  color: #5f4b38;
  line-height: 1.8;
  max-width: 740px;
  margin: 0 auto;
}

/* content */
.privacy-wordconnect__content {
  padding: 80px 0 120px;
}

.privacy-wordconnect__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-wordconnect__inner article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.privacy-wordconnect__inner article:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.privacy-wordconnect__inner h2 {
  font-size: 1.4rem;
  color: #4b3726;
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.privacy-wordconnect__inner p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5f4b38;
}

.privacy-wordconnect__inner a {
  color: #a97b50;
  text-decoration: none;
  font-weight: 600;
}

.privacy-wordconnect__inner a:hover {
  color: #d19b67;
}

/* mobile */
@media (max-width: 700px) {
  .privacy-wordconnect__intro h1 {
    font-size: 2rem;
  }

  .privacy-wordconnect__inner article {
    padding: 1.6rem;
  }

  .privacy-wordconnect__inner h2 {
    font-size: 1.2rem;
  }
}
.terms-wordconnect {
  background: linear-gradient(180deg, #fffaf2 0%, #f6ebd3 100%);
  color: #4b3726;
  font-family: 'Manrope', sans-serif;
}

/* intro */
.terms-wordconnect__intro {
  padding: 160px 0 80px;
  text-align: center;
}

.terms-wordconnect__intro h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.terms-wordconnect__intro p {
  font-size: 1.1rem;
  color: #5f4b38;
  line-height: 1.8;
  max-width: 740px;
  margin: 0 auto;
}

/* content */
.terms-wordconnect__content {
  padding: 80px 0 120px;
}

.terms-wordconnect__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.terms-wordconnect__inner article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.terms-wordconnect__inner article:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.terms-wordconnect__inner h2 {
  font-size: 1.4rem;
  color: #4b3726;
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.terms-wordconnect__inner p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5f4b38;
}

.terms-wordconnect__inner a {
  color: #a97b50;
  text-decoration: none;
  font-weight: 600;
}

.terms-wordconnect__inner a:hover {
  color: #d19b67;
}

/* mobile */
@media (max-width: 700px) {
  .terms-wordconnect__intro h1 {
    font-size: 2rem;
  }

  .terms-wordconnect__inner article {
    padding: 1.6rem;
  }

  .terms-wordconnect__inner h2 {
    font-size: 1.2rem;
  }
}
