@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: "Montserrat";
  src: url("/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Montserrat";
}


.header-wordless {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.header-wordless__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
}

.header-wordless__logo img {
  width: 36px;
  height: 36px;
}

.header-wordless__nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.header-wordless__nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.header-wordless__nav a:hover {
  color: #0077ff;
}

.header-wordless__cta {
  background: linear-gradient(135deg, #7b57ff, #4fa9ff);
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-wordless__cta:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

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

.header-wordless__burger span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

/* --- адаптив --- */
@media (max-width: 850px) {
  .header-wordless__nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: none;
  }

  .header-wordless__cta {
    display: none;
  }

  .header-wordless__nav.active {
    display: block;
  }

  .header-wordless__nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .header-wordless__burger {
    display: flex;
  }
}
.hero-wordless {
  padding-top: 120px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #fafaff 0%, #f4f7ff 100%);
}

.hero-wordless__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-wordless__content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 800;
  color: #1c1c1e;
  margin-bottom: 1.5rem;
}

.hero-wordless__content h1 span {
  background: linear-gradient(135deg, #7b57ff, #4fa9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-wordless__content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
  max-width: 560px;
}

.hero-wordless__cta {
  display: inline-block;
  margin-top: 1.2rem;
  background: linear-gradient(135deg, #7b57ff, #4fa9ff);
  color: #fff;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.hero-wordless__cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.hero-wordless__visual img {
  width: 100%;
  height: 850px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* адаптив */
@media (max-width: 900px) {
  .hero-wordless__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-wordless__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-wordless__visual {
    margin-top: 2rem;
  }
}
.about-wordless {
  padding: 100px 0;
  background: #fff;
}

.about-wordless__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.about-wordless__visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-wordless__content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 1.5rem;
}

.about-wordless__content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.about-wordless__list {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}

.about-wordless__list li {
  font-size: 1rem;
  color: #222;
  background: #f6f8ff;
  border-left: 4px solid #7b57ff;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  margin-bottom: 0.6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* адаптив */
@media (max-width: 900px) {
  .about-wordless__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-wordless__visual {
    order: -1;
  }

  .about-wordless__list li {
    text-align: left;
  }
}
.features-wordless {
  padding: 100px 0;
  background: linear-gradient(180deg, #f9faff 0%, #f4f6ff 100%);
}

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

.features-wordless h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 1rem;
}

.features-wordless__intro {
  color: #444;
  max-width: 720px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.features-wordless__item {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.features-wordless__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

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

.features-wordless__item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 0.5rem;
}

.features-wordless__item p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* адаптив */
@media (max-width: 700px) {
  .features-wordless__item {
    padding: 1.5rem 1rem;
  }
}
.faq-wordless {
  position: relative;
  color: #fff;
  padding: 120px 0 100px 0;
  overflow: hidden;
}

.faq-wordless__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.faq-wordless__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.faq-wordless__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,40,0.5) 0%, rgba(10,10,20,0.85) 100%);
}

.faq-wordless__inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.faq-wordless__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-wordless__item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 1.5rem 1.8rem;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease;
}

.faq-wordless__item:hover {
  background: rgba(255,255,255,0.18);
}

.faq-wordless__item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.faq-wordless__item p {
  font-size: 1.05rem;
  color: #f2f2f2;
  line-height: 1.7;
}

/* адаптив */
@media (max-width: 700px) {
  .faq-wordless {
    padding: 100px 0;
  }

  .faq-wordless__item {
    padding: 1.2rem 1rem;
  }
}
.tips-wordless {
  padding: 120px 0;
  background: linear-gradient(180deg, #f4f6ff 0%, #eef1ff 100%);
}

.tips-wordless__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.tips-wordless__inner h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1c1c1e;
  margin-bottom: 1rem;
}

.tips-wordless__intro {
  max-width: 720px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

.tips-wordless__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-bottom: 4rem;
}

.tips-wordless__item {
  background: #fff;
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

.tips-wordless__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.tips-wordless__item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 0.6rem;
}

.tips-wordless__item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* CTA */
.tips-wordless__cta {
  background: linear-gradient(135deg, #7b57ff, #4fa9ff);
  color: #fff;
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}

.tips-wordless__cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tips-wordless__cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.tips-wordless__button {
  display: inline-block;
  background: #fff;
  color: #333;
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.tips-wordless__button:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* адаптив */
@media (max-width: 700px) {
  .tips-wordless {
    padding: 90px 0;
  }
  .tips-wordless__cta {
    padding: 2.2rem 1.5rem;
  }
}
.footer-wordless {
  background: linear-gradient(180deg, #181820 0%, #111118 100%);
  color: #fff;
  padding: 80px 0 40px 0;
}

.footer-wordless__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.footer-wordless__brand img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.8rem;
}

.footer-wordless__brand span {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-wordless__brand p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-wordless__links h4,
.footer-wordless__legal h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-wordless__links ul,
.footer-wordless__legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-wordless__links a,
.footer-wordless__legal a {
  color: #b8b8c4;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.footer-wordless__links a:hover,
.footer-wordless__legal a:hover {
  color: #fff;
}

.footer-wordless__copy {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}

/* адаптив */
@media (max-width: 700px) {
  .footer-wordless {
    text-align: center;
  }

  .footer-wordless__copy {
    border: none;
    padding-top: 0;
    margin-top: 2rem;
  }
}
.about-page__hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #f9faff 0%, #f3f5ff 100%);
  text-align: center;
}

.about-page__hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1c1c1e;
  margin-bottom: 1.5rem;
}

.about-page__hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-page__vision,
.about-page__team {
  padding: 80px 0;
}

.about-page__vision h2,
.about-page__team h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1c1c1e;
}

.about-page__vision p,
.about-page__team p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-page__inner--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-page__visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.about-page__quote {
  background: linear-gradient(135deg, #7b57ff, #4fa9ff);
  color: #fff;
  text-align: center;
  padding: 100px 2rem;
}

.about-page__quote blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

.about-page__quote p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.about-page__quote cite {
  display: block;
  font-size: 1rem;
  opacity: 0.9;
}

/* адаптив */
@media (max-width: 900px) {
  .about-page__inner--grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.features-page__hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #f9faff 0%, #f3f5ff 100%);
  text-align: center;
}

.features-page__hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1c1c1e;
  margin-bottom: 1.5rem;
}

.features-page__hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.7;
}

.features-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-page__list {
  padding: 80px 0;
}

.features-page__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.features-page__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.features-page__icon svg {
  flex-shrink: 0;
}

.features-page__content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #1c1c1e;
}

.features-page__content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

/* адаптив */
@media (max-width: 800px) {
  .features-page__item {
    flex-direction: column;
    text-align: center;
  }

  .features-page__icon svg {
    margin: 0 auto 1rem;
  }
}
.how-page__hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #f9faff 0%, #f3f5ff 100%);
  text-align: center;
}

.how-page__hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1c1c1e;
  margin-bottom: 1.2rem;
}

.how-page__hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.7;
}

.how-page__steps {
  padding: 80px 0;
}

.how-page__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.how-page__step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.how-page__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.how-page__icon svg {
  flex-shrink: 0;
}

.how-page__text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 0.6rem;
}

.how-page__text p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.how-page__cta {
  background: linear-gradient(135deg, #7b57ff, #4fa9ff);
  color: #fff;
  text-align: center;
  padding: 100px 2rem;
}

.how-page__cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.how-page__cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.how-page__button {
  display: inline-block;
  background: #fff;
  color: #333;
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.how-page__button:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.9);
}

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

  .how-page__icon svg {
    margin: 0 auto 1rem;
  }
}
.download-page__hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #f9faff 0%, #f3f5ff 100%);
  text-align: center;
}

.download-page__hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1c1c1e;
  margin-bottom: 1.2rem;
}

.download-page__hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

.download-page__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.download-page__btn {
  background: linear-gradient(135deg, #7b57ff, #4fa9ff);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.download-page__btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.download-page__btn--alt {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
}

.download-page__why {
  padding: 100px 0;
  background: #fff;
  text-align: left;
}

.download-page__why h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #1c1c1e;
}

.download-page__why ul {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.download-page__why li {
  background: #f6f8ff;
  border-left: 4px solid #7b57ff;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.download-page__form {
  padding: 100px 0;
  background: linear-gradient(135deg, #7b57ff, #4fa9ff);
  color: #fff;
  text-align: center;
}

.download-page__form h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.download-page__form p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.download-page__formbox {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.download-page__formbox input {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid white;
  width: 280px;
  font-size: 1rem;

  color: #fff;
  
}

.download-page__formbox button {
  background: #fff;
  color: #333;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.download-page__formbox button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.popup.active {
  display: flex;
}

.popup__content {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  color: #333;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.popup__content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.popup__content button {
  background: linear-gradient(135deg, #7b57ff, #4fa9ff);
  color: #fff;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.popup__content button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

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

  .download-page__formbox input {
    width: 90%;
  }
}

.privacy-page {
  padding: 140px 0 100px;
  background: linear-gradient(180deg, #f9faff 0%, #f3f5ff 100%);
}

.privacy-page__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  color: #333;
}

.privacy-page__inner h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1c1c1e;
  margin-bottom: 1rem;
  text-align: center;
}

.privacy-page__inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1c1c1e;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.privacy-page__inner p,
.privacy-page__inner li {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.privacy-page__inner ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.privacy-page__inner b {
  color: #000;
}

/* адаптив */
@media (max-width: 700px) {
  .privacy-page {
    padding: 120px 0 80px;
  }

  .privacy-page__inner h1 {
    font-size: 2.2rem;
  }
}

.terms-page {
  padding: 140px 0 100px;
  background: linear-gradient(180deg, #f9faff 0%, #f3f5ff 100%);
}

.terms-page__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  color: #333;
}

.terms-page__inner h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1c1c1e;
  margin-bottom: 1rem;
  text-align: center;
}

.terms-page__inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1c1c1e;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.terms-page__inner p,
.terms-page__inner li {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.terms-page__inner a {
  color: #4fa9ff;
  text-decoration: none;
  font-weight: 600;
}

.terms-page__inner a:hover {
  text-decoration: underline;
}

.terms-page__inner ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

/* адаптив */
@media (max-width: 700px) {
  .terms-page {
    padding: 120px 0 80px;
  }

  .terms-page__inner h1 {
    font-size: 2.2rem;
  }
}
