.documents-page .section-titles {
  margin-bottom: 40px;
}

.documents-page .section-sub-title {
  max-width: 650px;
  color: var(--text-color3);
}

.documents-page .documents-emoji {
  display: inline-block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
}

.documents-page h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}

.documents-page a:focus-visible,
.documents-page button:focus-visible,
.documents-page summary:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 4px;
}

.documents-page [id] {
  scroll-margin-top: 100px;
}

.documents-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.documents-hero {
  position: relative;
  min-height: 900px;
  padding-top: 100px;
  background-image: url("/assets/images/documents/documents-hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  overflow: hidden;
  @media (max-width: 1600px) {
    min-height: 880px;
  }
}

/* The supplied artwork includes a header; keep only the live site header visible. */
.documents-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 90px;
  background: var(--primary-cont);
  pointer-events: none;
}

.documents-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  line-height: 20px;
}

.documents-breadcrumb a,
.documents-breadcrumb > span:nth-child(2) {
  color: var(--text-color5);
}

.documents-hero__heading {
  position: relative;
  z-index: 2;
  max-width: 606px;
  margin: 28px auto 0;
  text-align: center;
}

.documents-hero__heading .section-sub-title {
  margin-top: 12px;
}

.documents-hero__second {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.documents-toggle {
  display: inline-block;
  width: 68px;
  height: 40px;
  border-radius: 30px;
  background: #1252d3 url("../images/documents/tumbler.webp") center/cover;
  vertical-align: middle;
  position: relative;
  flex-shrink: 0;
}

.documents-toggle::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
}

.documents-hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.documents-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 6px;
  background: var(--main-container);
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
}

.documents-secondary:hover {
  background: var(--bg-color-hov);
}

.documents-hero__preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 10px;
  max-width: 1080px;
  margin: 45px auto 0;
  position: relative;
  z-index: 2;
}

.documents-preview {
  padding: 20px;
  background: var(--bg-color);
  border-radius: 12px;
  min-width: 0;
  color: var(--text-color);
}

.documents-preview--essay,
.documents-preview--report {
  margin-top: 108px;
}

.documents-preview--essay {
  min-height: 340px;
}

.documents-preview--report {
  min-height: 310px;
}

.documents-preview--course {
  min-height: 391px;
}

.documents-preview__label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--blue-add) 10%, transparent);
  margin-bottom: 16px;
  line-height: 20px;
}

.documents-preview--course .documents-preview__label {
  background: color-mix(in srgb, var(--green-add) 10%, transparent);
  color: var(--green-add);
}

.documents-preview--report .documents-preview__label {
  background: color-mix(in srgb, var(--pink-add) 10%, transparent);
  color: var(--pink-add);
}

.documents-preview__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.documents-preview p {
  font-size: 16px;
  line-height: 20px;
  color: var(--text-color3);
}

.documents-preview ul {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-color3);
}

.documents-preview li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.documents-preview__check {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.documents-preview__badge {
  position: absolute;
  top: -53px;
  right: 0;
  padding: 10px 16px;
  border-radius: 30px;
  color: #fff;
  background: var(--green-add);
  white-space: nowrap;
  font-size: 16px;
  line-height: 20px;
}

.documents-preview--report .documents-preview__badge {
  top: 95px;
  right: -16px;
  background: var(--pink-add);
}

.documents-preview__number {
  display: block;
  font-size: 40px;
  line-height: 40px;
  color: var(--pink-add);
  margin-bottom: 8px;
}

.documents-preview dl {
  margin-top: 20px;
  display: grid;
  gap: 8px;
  font-size: 16px;
  line-height: 20px;
}

.documents-preview dl div {
  display: flex;
  justify-content: space-between;
}

.documents-preview dt {
  color: var(--text-color3);
}

.documents-preview dd {
  font-weight: 600;
}

.documents-preview__toolbar {
  position: absolute;
  top: -52px;
  left: 0;
  background: var(--main-container);
  padding: 10px 14px;
  word-spacing: 12px;
  border-radius: 4px;
}

.documents-preview__toolbar b {
  color: var(--accent-color);
}

.documents-chart {
  border-radius: 8px;
  background: color-mix(in srgb, var(--green-add) 3%, var(--main-container));
  padding: 15px 17px 10px;
  margin-top: 16px;
}

.documents-chart__legend {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  line-height: 18px;
  color: var(--green-add);
}

.documents-chart__plot {
  height: 110px;
  margin-top: 10px;
  position: relative;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 39px,
    var(--border) 40px 41px
  );
}

.documents-chart__plot img {
  position: absolute;
  left: 6px;
  top: 12px;
  max-width: none;
}

.documents-chart__axis {
  display: flex;
  justify-content: space-between;
  color: var(--text-color5);
  font-size: 10px;
  line-height: 14px;
  margin-top: 10px;
}

.documents-preview small {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  color: var(--text-color5);
}

.documents-hero__art {
  position: absolute;
  width: 1440px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.documents-hero__art::before,
.documents-hero__art::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 660px;
  bottom: -200px;
  border-radius: 50%;
  background: linear-gradient(120deg, #56e4fc, #0751e8);
  filter: blur(1px);
}

.documents-hero__art::before {
  left: -130px;
  transform: rotate(-40deg);
}

.documents-hero__art::after {
  right: -220px;
  height: 1000px;
  transform: rotate(24deg);
}

.documents-hero__art img {
  position: absolute;
  z-index: 1;
  object-fit: contain;
}

.documents-hero__pages {
  width: 440px;
  left: -206px;
  bottom: -150px;
  transform: rotate(8deg);
}

.documents-hero__folder {
  width: 450px;
  right: -218px;
  bottom: -116px;
}

.documents-hero__star {
  width: 270px;
  left: -113px;
  top: 250px;
}

.documents-hero__link {
  width: 270px;
  right: -124px;
  top: 245px;
  transform: rotate(10deg);
}

.documents-categories {
  padding-top: 0;
}

.documents-categories__heading .section-title {
  color: var(--accent-color);
}

.documents-categories__heading .text-blue {
  color: var(--text-color);
}

.documents-categories__list {
  display: grid;
  gap: 20px;
}

.documents-category {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 274px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--main-container);
  --category-color: var(--blue-add);
}

.documents-category--business {
  --category-color: var(--pink-add);
}

.documents-category--official {
  --category-color: var(--green-add);
}

.documents-category--marketing {
  --category-color: var(--lblue-add);
}

.documents-category--marketing .documents-category__bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.documents-category--marketing .documents-category__tags a {
  font-weight: 500;
}

@media (min-width: 1200px) {
  .documents-category__content {
    display: flex;
    flex-direction: column;
    min-height: 232px;
    padding-top: 6px;
    align-self: stretch;
  }

  .documents-category__content .documents-category__bottom {
    margin-top: auto;
  }

  .documents-category .documents-category__picture {
    position: relative;
    align-self: stretch;
    min-height: 232px;
  }

  .documents-category .documents-category__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .documents-category--marketing .documents-category__bottom {
    position: relative;
    margin-top: auto;
    padding-right: min(300px, 34.65%);
  }

  .documents-category--marketing .documents-category__tags {
    gap: 10px;
  }

  .documents-category--marketing .documents-category__button {
    position: absolute;
    right: 0;
    bottom: 0;
    padding-left: 20px;
    padding-right: 12px;
  }
}

@media (max-width: 1199px) {
  .documents-category--marketing .documents-category__bottom {
    margin-top: 25px;
    padding-top: 24px;
  }
}

.documents-category--career {
  --category-color: var(--hotred-add);
}

.documents-category__image {
  width: 232px;
  height: 232px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.documents-category:nth-child(even) .documents-category__image {
  order: 2;
}

.documents-category__content {
  flex: 1;
  min-width: 0;
}

.documents-category__content > p {
  color: var(--text-color3);
  line-height: 20px;
  margin-top: 8px;
}

.documents-category__bottom {
  display: flex;
  align-items: end;
  gap: 24px;
  margin-top: 20px;
}

.documents-category__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.documents-category__tags a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--main-container2);
  color: var(--text-color);
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
}

.documents-category__tags a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--category-color);
  flex-shrink: 0;
}

.documents-category__tags a:hover {
  border-color: var(--category-color);
}

.documents-category__button {
  height: 44px;
  font-size: 16px;
  gap: 6px;
  padding: 12px 14px;
}

.documents-category__button i {
  font-size: 20px;
}

.documents-dots {
  display: none;
}

.documents-prompts {
  padding: 20px 0 80px;
}

.documents-prompts .section-sub-title {
  max-width: 518px;
}
.documents-prompts .section-titles {
  margin-bottom: 32px;
}
.documents-prompts__list {
  max-width: 1158px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 20px 10px;
  position: relative;
}
.documents-prompts .documents-carousel {
  position: relative;
  isolation: isolate;
}
.documents-prompts .documents-carousel::before {
  content: "";
  position: absolute;
  inset: -25px 60px -95px;
  z-index: -1;
  background: url("/assets/images/documents/prompts-glow.svg") center / 100%
    100% no-repeat;
  pointer-events: none;
}
.documents-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 12px;
  color: var(--text-color);
  background: var(--main-container);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 13px 13px 19px;
  min-width: 0;
  grid-column: span 2;
  transition: border-color 0.2s;
}
.documents-prompt > span:first-child {
  flex: 1;
  min-width: 0;
}
.documents-prompt strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.documents-prompt small {
  display: block;
  font-size: 14px;
  line-height: 18px;
  margin-top: 4px;
  color: var(--text-color3);
}
.documents-prompt__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--blue-add) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--blue-add) 10%, transparent);
  border-radius: 6px;
}
.documents-prompt__arrow img {
  display: block;
}
.documents-prompt:hover,
.documents-prompt:focus-visible {
  border-color: var(--accent-color);
  transform: none;
}
@media (min-width: 1200px) {
  .documents-prompt[data-prompt-index="1"],
  .documents-prompt[data-prompt-index="8"] {
    grid-column: 2 / span 2;
  }
  .documents-prompt[data-prompt-index="4"] {
    grid-column: 1 / span 2;
  }
  .documents-prompt[data-prompt-index="11"] {
    grid-column: 3 / span 2;
  }
}

.documents-process {
  padding-bottom: 180px;
}

.documents-process__layout {
  display: grid;
  grid-template-columns: 1fr 575px;
  gap: 60px;
}

.documents-process__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.documents-process__intro .section-titles {
  align-items: start;
}

.documents-process__intro .section-title,
.documents-process__intro .section-sub-title {
  text-align: left;
}

.documents-process__intro .section-sub-title {
  max-width: 310px;
}

.documents-process__steps {
  display: grid;
  gap: 10px;
}

.documents-step {
  padding: 28px;
  background: var(--main-container);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 342px;
}

.documents-step__number {
  color: var(--text-color5);
  line-height: 20px;
  margin-bottom: 48px;
}

.documents-step__number span {
  color: var(--accent-color);
}

.documents-step h3 {
  display: flex;
  gap: 7px;
  align-items: center;
}

.documents-step ul {
  margin: 16px 0 24px;
  display: grid;
  gap: 8px;
  font-size: 16px;
  line-height: 20px;
}

.documents-step li::before,
.documents-feature li::before,
.documents-case li::before {
  content: "— ";
}

.documents-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 460px;
}

.documents-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #161616;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  line-height: 20px;
}

.documents-chips span::before {
  content: "✳";
  color: #a1d8ee;
}

.documents-process__round {
  display: flex;
  width: 230px;
  height: 230px;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--text-color5);
  border-radius: 50%;
  color: var(--text-color);
  text-align: center;
  transform: rotate(-20deg);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
}

.documents-process__round i {
  background: var(--accent-color);
  font-size: 44px;
}

.documents-advantages {
  position: relative;
  background: #161616;
  color: #fafcff;
  padding: 40px 0 180px;
}

.documents-advantages > .loss-quality-elips {
  pointer-events: none;
}

.documents-advantages > .loss-quality-elips img {
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.documents-advantages > .container {
  position: relative;
  z-index: 1;
}

.documents-advantages .section-title {
  color: #fafcff;
}

html[data-theme="dark"] .documents-chips span {
  background: var(--text-color);
  color: var(--main-container3);
}

html[data-theme="dark"] .documents-chips span::before {
  background: var(--accent-color);
  -webkit-mask: url("../images/documents/chip-wheel.svg") center/contain no-repeat;
  mask: url("../images/documents/chip-wheel.svg") center/contain no-repeat;
}

.documents-advantages .section-sub-title {
  color: #b7b9bb;
}

.documents-advantages .section-tag span {
  color: #fafdff;
}

.documents-features {
  position: relative;
  height: 670px;
  margin-bottom: 160px;
}

.documents-feature {
  position: absolute;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  background: #161616;
  overflow: hidden;
}

.documents-feature--1 {
  width: calc(50% - 5px);
  height: 280px;
  left: 0;
  top: 0;
}

.documents-feature--2 {
  width: calc(33.333% - 7px);
  height: 380px;
  left: calc(50% + 5px);
  top: 0;
}

.documents-feature--3 {
  width: calc(33.333% - 7px);
  height: 380px;
  right: calc(50% + 5px);
  top: 290px;
}

.documents-feature--4 {
  width: calc(50% - 5px);
  height: 280px;
  right: 0;
  top: 390px;
}

.documents-feature__text {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.documents-feature h3 {
  display: flex;
  align-items: center;
  gap: 5px;
}

.documents-feature ul {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: #b7b9bb;
  font-size: 16px;
  line-height: 20px;
}

.documents-feature__art {
  position: absolute;
  width: 260px;
  height: 260px;
  top: -50px;
  right: -10px;
  object-fit: contain;
  z-index: 1;
}

.documents-feature--1 .documents-feature__art {
  right: -38px;
  top: 10px;
  width: 220px;
  height: 320px;
}

.documents-feature--1 .documents-feature__text {
  right: 130px;
}

.documents-feature--4 .documents-feature__art {
  width: 180px;
  height: 180px;
  top: -25px;
  right: 190px;
  transform: rotate(-14deg);
}

.documents-feature::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 260px;
  top: -100px;
  right: -20%;
  background: url("../images/documents/feature-wave2.webp") center/cover;
  transform: rotate(18deg);
}

.documents-feature--2::before {
  background-image: url("../images/documents/feature-wave3.webp");
  right: 0;
  transform: rotate(-10deg);
}

.documents-feature--3::before {
  background-image: url("../images/documents/feature-wave1.webp");
}

.documents-feature--4::before {
  background: linear-gradient(140deg, #ffe400, #ff6027);
  border-radius: 50%;
  top: -170px;
  right: -10%;
}

.documents-feature--4::after {
  content: "";
  position: absolute;
  right: -55px;
  top: -10px;
  width: 250px;
  height: 250px;
  background: url("../images/documents/feature-folder.webp") center/contain
    no-repeat;
}

.documents-feature__points {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(2, 12px);
  gap: 4px;
  z-index: 3;
}

.documents-feature__points span {
  height: 12px;
  background: #303030;
  border-radius: 50%;
}

.documents-feature__points .is-active {
  background: #1252d3;
}

.documents-features__star {
  position: absolute;
  width: 195px;
  right: 5%;
  top: 40px;
}

.documents-features__flower {
  position: absolute;
  width: 310px;
  left: -50px;
  top: 245px;
  z-index: -1;
}

.documents-features__cursor {
  position: absolute;
  width: 260px;
  right: -60px;
  top: 230px;
  z-index: -1;
}

.documents-cases {
  padding-top: 0;
}

.documents-cases__list {
  display: grid;
  gap: 80px;
}

.documents-case {
  display: flex;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 360px;
  margin-bottom: 40px;
}

.documents-case__visual {
  width: 380px;
  flex-shrink: 0;
  border-radius: 12px;
  position: relative;
  background: color-mix(in srgb, var(--blue-add) 10%, transparent);
}

.documents-case__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  background: url("../images/documents/case-bg-study.webp") center/1100px;
  opacity: 1;
}

.documents-case--career .documents-case__visual {
  order: 2;
  background: color-mix(in srgb, var(--pinky-add) 10%, transparent);
}

.documents-case--career .documents-case__visual::before {
  background-image: url("../images/documents/case-bg-career.webp");
  background-size: 1500px;
}

.documents-case--report .documents-case__visual::before {
  background-image: url("../images/documents/case-bg-report.webp");
  background-size: 1600px;
}

.documents-case__visual > img {
  display: block;
  width: 340px;
  height: 340px;
  object-fit: contain;
  position: absolute;
  left: 10px;
  top: -30px;
  transform: rotate(-17.58deg);
}

.documents-case--career .documents-case__visual > img {
  transform: rotate(14deg);
}

.documents-case--report .documents-case__visual > img {
  transform: rotate(-12deg);
}

.documents-case__result {
  position: absolute;
  bottom: -35px;
  left: 28px;
  background: var(--main-container);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  transform: rotate(-6deg);
  box-shadow: 0 6px 24px #1818190a;
  font-size: 14px;
  line-height: 20px;
  z-index: 1;
}

.documents-case--career .documents-case__result {
  transform: rotate(6deg);
}

.documents-case__result > span {
  display: block;
  color: var(--text-color5);
  font-size: 10px;
  margin-bottom: 8px;
}

.documents-case__result .documents-emoji {
  font-size: 12px;
  width: 16px;
  height: 16px;
}

.documents-case__content {
  flex: 1;
  padding: 32px;
  min-width: 0;
}

.documents-case__subtitle {
  margin-top: 10px;
  line-height: 20px;
}

.documents-case__subtitle span {
  color: var(--accent-color);
}

.documents-case__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.documents-case h4 {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color5);
  margin-bottom: 12px;
}

.documents-case ul {
  display: grid;
  gap: 8px;
  font-size: 16px;
  line-height: 20px;
}

.documents-case .documents-chips span {
  padding: 6px 10px;
  font-size: 12px;
  line-height: 14px;
}

.documents-export {
  padding-top: 80px;
  padding-bottom: 180px;
}

.documents-export__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.documents-export__card {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--main-container);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.documents-export__text {
  padding: 12px;
}

.documents-export h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.documents-export h3 span {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  background: transparent;
  border-radius: 4px;
}

.documents-export p {
  font-size: 16px;
  line-height: 20px;
  margin-top: 10px;
  color: var(--text-color3);
}

.documents-export__card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.documents-export__card--edit > img {
  order: -1;
}

.documents-export h3 svg {
  display: block;
  flex-shrink: 0;
}

.documents-export__card--share h3 span {
  background: var(--pinky-add);
}

.documents-faq {
  padding: 80px 0;
}

.documents-faq .section-sub-title {
  max-width: 470px;
}

.documents-faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  gap: 16px;
  align-items: center;
}

.documents-faq summary::-webkit-details-marker {
  display: none;
}

.documents-faq summary > span:first-child {
  flex: 1;
}

.documents-faq details[open] .icon-plus {
  transform: rotate(45deg);
}

.documents-faq__answer {
  padding: 0 20px 20px;
  color: var(--text-color3);
  font-size: 16px;
  line-height: 22px;
}

.documents-calculator {
  margin-top: 0;
  padding: 80px 0 220px;
}

.documents-calculator .section-sub-title {
  max-width: 370px;
}

.documents-calculator__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.documents-calculator .saving-fir {
  font-size: 12px;
  line-height: 14px;
  height: 26px;
  padding: 6px 12px;
}

.documents-calculator .save-slidy-numb strong {
  font-size: 80px;
  line-height: 80px;
  letter-spacing: -0.06em;
}

.documents-calculator .save-slidy-numb span {
  font-size: 36px;
  line-height: 40px;
}

.documents-calculator .save-slidy-data {
  flex-wrap: wrap;
  gap: 12px;
}

.documents-calculator .save-slidy-data span {
  font-size: 16px;
  line-height: 20px;
}

.documents-calculator .save-slidy-data p {
  font-size: 16px;
  line-height: 20px;
}

.documents-calculator .power-btn a {
  width: 100%;
}

.documents-calculator .save-slidy {
  justify-content: space-between;
}

.documents-calculator .save-slidy-box {
  padding-bottom: 28px;
}

.documents-cta {
  margin: 0;
  min-height: 604px;
  position: relative;
  padding: 0 0 180px;
  background: #161616 url("/assets/images/documents/documents-cta-bg.webp")
    center bottom / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.documents-cta .container {
  position: relative;
  z-index: 2;
}

.documents-cta .section-titles {
  margin: 0;
}

.documents-cta .section-big-title {
  color: #fff;
}

.documents-cta .section-sub-title {
  max-width: 625px;
  color: #b7b9bb;
}

.documents-cta .section-tag span {
  color: #b7b9bb;
}

.documents-cta__chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
}

.documents-cta__chips > span {
  height: 42px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #ffffff1a;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 10px 16px 10px 12px;
  font-size: 16px;
  line-height: 20px;
  border-radius: 30px;
}

.documents-cta__chips .documents-emoji {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.documents-cta__button {
  color: #161616;
  background: #fff;
  margin-top: 12px;
}

.documents-cta__button .icon {
  background: #161616;
}

.documents-cta__button:hover {
  background: #a1d8ee;
}

.documents-cta__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.documents-cta__art img {
  position: absolute;
  object-fit: contain;
}

.documents-cta__hearts {
  width: 490px;
  left: -110px;
  bottom: -170px;
  transform: rotate(-12deg);
}

.documents-cta__fire {
  width: 230px;
  left: 27%;
  bottom: -80px;
}

.documents-cta__blob {
  width: 560px;
  right: -200px;
  bottom: -220px;
  transform: rotate(-35deg);
}

.documents-cta__blob2 {
  width: 330px;
  right: 18%;
  bottom: -160px;
}

.documents-cta__orange {
  width: 180px;
  right: 5%;
  bottom: 60px;
}

.documents-cta__star {
  width: 140px;
  right: 8%;
  bottom: 0;
}

@media (max-width: 1199px) {
  .documents-page .section-title {
    font-size: 26px;
    line-height: 30px;
  }
  .documents-page .section-big-title {
    font-size: 30px;
    line-height: 34px;
    letter-spacing: -0.02em;
  }
  .documents-page .section-sub-title {
    font-size: 16px;
    line-height: 20px;
  }
  .documents-page .section-titles {
    gap: 8px;
    margin-bottom: 28px;
  }
  .documents-page .section-tag span {
    font-size: 14px;
    line-height: 18px;
  }
  .documents-page .section-padding {
    padding: 60px 0;
  }
  .documents-page h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .documents-page .desktop-block {
    display: block;
  }
  .documents-carousel [data-slides] {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .documents-carousel [data-slides]::-webkit-scrollbar {
    display: none;
  }
  .documents-carousel [data-slide-item] {
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin-bottom: 0;
  }
  .documents-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    min-height: 10px;
  }
  .documents-dots button {
    padding: 0;
    border: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    position: relative;
  }
  .documents-dots button::after {
    content: "";
    position: absolute;
    inset: -9px;
  }
  .documents-dots button[aria-pressed="true"] {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
  }
  .documents-category {
    flex-direction: column;
    padding: 20px;
    align-items: stretch;
    border-radius: 12px;
    gap: 20px;
  }
  .documents-category__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .documents-category:nth-child(even) .documents-category__image {
    order: 0;
  }
  .documents-category__content {
    display: flex;
    flex-direction: column;
  }
  .documents-category__content > p {
    font-size: 16px;
    line-height: 20px;
  }
  .documents-category__bottom {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-top: 24px;
  }
  .documents-category__tags {
    gap: 6px;
    align-content: start;
  }
  .documents-category__tags a {
    font-size: 12px;
    line-height: 14px;
    padding: 6px 10px;
    gap: 6px;
  }
  .documents-category__tags a::before {
    width: 5px;
    height: 5px;
  }
  .documents-category__button {
    width: 100%;
    height: 48px;
    margin-top: auto;
  }
  .documents-prompts {
    padding: 20px 0 60px;
  }
  .documents-prompts__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 0 12px;
  }
  .documents-prompt {
    min-width: 0;
    padding: 10px 12px;
  }
  .documents-prompt:nth-child(n + 7) {
    display: none;
  }
  .documents-prompt strong {
    font-size: 14px;
    line-height: 18px;
  }
  .documents-prompt small {
    font-size: 12px;
    line-height: 14px;
  }
  .documents-prompt__arrow {
    padding: 6px 10px;
  }
  .documents-page .documents-process {
    padding: 60px 0 110px;
  }
  .documents-process__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .documents-process__intro .section-titles {
    align-items: center;
  }
  .documents-process__intro .section-title,
  .documents-process__intro .section-sub-title {
    text-align: center;
  }
  .documents-process__intro .section-sub-title {
    max-width: 300px;
  }
  .documents-process__round {
    display: none;
  }
  .documents-step {
    padding: 24px;
    min-height: 0;
  }
  .documents-step__number {
    font-size: 14px;
    margin-bottom: 38px;
  }
  .documents-step h3 {
    display: block;
  }
  .documents-step h3 .documents-emoji {
    width: 22px;
    height: 22px;
    margin-right: 5px;
  }
  .documents-step ul {
    font-size: 16px;
    line-height: 22px;
    margin-top: 16px;
    gap: 10px;
  }
  .documents-chips {
    gap: 8px;
  }
  .documents-chips span {
    font-size: 14px;
    line-height: 18px;
    padding: 8px 12px;
  }
  .documents-advantages {
    padding: 40px 0 120px;
  }
  .documents-advantages > .loss-quality-elips {
    top: -20px;
  }
  .documents-advantages > .loss-quality-elips img {
    height: 80px;
  }
  .documents-features {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 80px;
  }
  .documents-feature {
    position: relative;
    inset: auto;
    width: 100%;
    height: 340px;
  }
  .documents-feature--1 {
    height: 380px;
  }
  .documents-feature--3 {
    order: 0;
  }
  .documents-feature__text {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .documents-feature--1 .documents-feature__text {
    right: 20px;
  }
  .documents-feature h3 {
    font-size: 20px;
  }
  .documents-feature ul {
    font-size: 14px;
    line-height: 20px;
    gap: 6px;
  }
  .documents-feature__art {
    width: 240px;
    height: 240px;
    top: -55px;
    right: -10px;
  }
  .documents-feature--1 .documents-feature__art {
    width: 180px;
    height: 230px;
    top: -10px;
    right: -25px;
  }
  .documents-feature--4 .documents-feature__art {
    width: 160px;
    height: 160px;
    right: 150px;
    top: -10px;
  }
  .documents-feature--4::after {
    width: 190px;
    height: 190px;
    right: -36px;
  }
  .documents-features__star,
  .documents-features__flower,
  .documents-features__cursor {
    display: none;
  }
  .documents-case {
    flex-direction: column;
    gap: 0;
  }
  .documents-case__visual {
    width: 100%;
    height: 330px;
  }
  .documents-case--career .documents-case__visual {
    order: 0;
  }
  .documents-case__visual > img {
    width: 280px;
    height: 280px;
    left: calc(50% - 140px);
    top: -5px;
  }
  .documents-case__result {
    left: 25px;
    bottom: 0;
    font-size: 12px;
    line-height: 16px;
    padding: 14px;
  }
  .documents-case__result ul {
    font-size: 12px;
    line-height: 16px;
    gap: 4px;
  }
  .documents-case__content {
    padding: 28px 20px;
  }
  .documents-case__subtitle {
    font-size: 14px;
    line-height: 18px;
  }
  .documents-case__columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 24px 0;
  }
  .documents-case ul {
    font-size: 14px;
    line-height: 20px;
  }
  .documents-case h4 {
    font-size: 10px;
    margin-bottom: 8px;
  }
  .documents-case .documents-chips {
    max-width: 260px;
  }
  .documents-page .documents-export {
    padding: 40px 0 80px;
  }
  .documents-export__card {
    gap: 16px;
  }
  .documents-export__card > img {
    height: 260px;
  }
  .documents-export__text {
    min-height: 102px;
  }
  .documents-export__card--edit > img {
    order: 0;
  }
  .documents-export h3 {
    font-size: 20px;
  }
  .documents-export p {
    font-size: 16px;
    line-height: 20px;
  }
  .documents-faq {
    padding: 40px 0 60px;
  }
  .documents-faq .faq-columns {
    flex-direction: column;
    gap: 8px;
    margin-top: 28px;
  }
  .documents-faq .faq-column {
    width: 100%;
    gap: 8px;
    max-width: 100%;
  }
  .documents-faq summary {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 12px 10px 14px;
  }
  .documents-faq__answer {
    padding: 0 14px 12px;
    font-size: 14px;
    line-height: 18px;
  }
  .documents-calculator {
    padding: 40px 0 80px;
  }
  .documents-calculator .calculate-much {
    flex-direction: column;
    margin-top: 28px;
  }
  .documents-calculator .calculate-boxes,
  .documents-calculator .save-slidy {
    max-width: none;
    padding: 20px;
  }
  .documents-calculator .per-month-box {
    position: relative;
    padding-bottom: 78px;
    gap: 16px;
  }
  .documents-calculator .per-month-box:last-child {
    padding-bottom: 50px;
  }
  .documents-calculator .per-month-center {
    position: static;
  }
  .documents-calculator .per-month-cnt {
    position: absolute;
    bottom: 24px;
    left: 0;
  }
  .documents-calculator .per-month-box:last-child .per-month-cnt {
    bottom: 0;
  }
  .documents-calculator .per-month-text {
    display: block;
    order: -1;
    margin-top: 34px;
  }
  .documents-calculator__label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    line-height: 22px;
  }
  .documents-calculator .per-month-center {
    height: 0;
  }
  .documents-calculator .per-month-text p {
    color: var(--text-color5);
  }
  .documents-calculator .save-slidy-numb strong {
    font-size: 60px;
    line-height: 60px;
  }
  .documents-calculator .save-slidy-numb span {
    font-size: 28px;
    line-height: 32px;
  }
  .documents-calculator .save-slidy {
    gap: 24px;
    min-height: 410px;
  }
  .documents-calculator .saving-fir {
    right: 20px;
    top: 20px;
  }
  .documents-calculator .save-slidy-box {
    padding-bottom: 28px;
  }
  .documents-cta {
    min-height: 656px;
    padding: 0 0 180px;
  }
  .documents-cta__chips {
    gap: 6px;
    max-width: 320px;
    margin-top: 16px;
  }
  .documents-cta__chips > span {
    height: 36px;
    padding: 7px 8px;
    font-size: 10px;
  }
  .documents-cta__button {
    position: static;
    transform: none;
    width: 270px;
    max-width: 100%;
    margin-top: 28px;
  }
  .documents-cta__hearts {
    width: 170px;
    left: -70px;
    bottom: 0;
  }
  .documents-cta__fire {
    width: 120px;
    left: 10%;
    bottom: -40px;
  }
  .documents-cta__blob {
    width: 260px;
    right: -150px;
    bottom: -120px;
  }
  .documents-cta__blob2 {
    width: 150px;
    right: 20%;
    bottom: -80px;
  }
  .documents-cta__orange {
    width: 70px;
    right: 0;
    bottom: 130px;
  }
  .documents-cta__star {
    width: 65px;
    right: 0;
    bottom: 0;
  }

  @media (max-width: 1024px) {
    .documents-hero {
      min-height: 833px;
      padding-top: 80px;
    }
    .documents-breadcrumb {
      font-size: 12px;
      line-height: 14px;
      gap: 6px;
    }
    .documents-hero__heading {
      margin-top: 24px;
    }
    .documents-hero__heading .section-sub-title {
      margin-top: 10px;
    }
    .documents-hero__second {
      gap: 6px;
    }
    .documents-toggle {
      width: 53px;
      height: 32px;
    }
    .documents-toggle::after {
      width: 26px;
      height: 26px;
      right: 3px;
      top: 3px;
    }
    .documents-hero__actions {
      flex-direction: column;
      gap: 12px;
      margin-top: 28px;
    }
    .documents-hero__actions > a {
      width: 100%;
    }
    .documents-hero__preview {
      display: block;
      margin-top: 80px;
      height: 310px;
    }
    .documents-preview--essay,
    .documents-preview--report {
      display: none;
    }
    .documents-preview--course {
      width: 274px;
      min-height: 304px;
      padding: 16px;
      margin: 0 auto;
      transform: rotate(-6deg);
    }
    .documents-preview__label {
      padding: 8px 10px;
      font-size: 14px;
      margin-bottom: 12px;
    }
    .documents-preview__title {
      font-size: 16px;
      line-height: 20px;
    }
    .documents-preview p {
      font-size: 12px;
      line-height: 16px;
    }
    .documents-chart {
      padding: 12px;
      margin-top: 12px;
    }
    .documents-chart__legend {
      font-size: 8px;
    }
    .documents-chart__plot {
      height: 90px;
    }
    .documents-chart__plot img {
      transform: scale(0.76);
      transform-origin: top left;
    }
    .documents-chart__axis {
      font-size: 8px;
    }
    .documents-preview small {
      font-size: 10px;
      line-height: 14px;
    }
    .documents-hero__art {
      width: 360px;
    }
    .documents-hero__art::before {
      width: 320px;
      bottom: -180px;
      left: -140px;
      height: 600px;
    }
    .documents-hero__art::after {
      width: 280px;
      height: 650px;
      bottom: -150px;
      right: -240px;
    }
    .documents-hero__pages {
      width: 220px;
      left: -180px;
      bottom: -30px;
    }
    .documents-hero__folder {
      width: 190px;
      right: -90px;
      bottom: -55px;
    }
    .documents-hero__star {
      width: 100px;
      left: -36px;
      top: 400px;
    }
    .documents-hero__link {
      width: 130px;
      right: -58px;
      top: 410px;
    }
    .documents-hero::after {
      height: 70px;
      bottom: -45px;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .documents-page *,
  .documents-page *::before,
  .documents-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Figma-specific illustration geometry, kept separate from the content layout. */
.documents-page .btn-start {
  gap: 6px;
}

.documents-page .btn-start .icon-arrow {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.documents-hero__heading .section-sub-title {
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
}

.documents-hero__mobile-toolbar,
.documents-preview__skeleton {
  display: none;
}

.documents-hero__art::before,
.documents-hero__art::after {
  display: none;
}

.documents-hero__gradient {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.documents-hero__gradient img {
  position: static;
  max-width: none;
  max-height: none;
}

.documents-hero__gradient--left {
  width: 2994.833px;
  height: 3010.482px;
  left: -1400px;
  top: -297px;
}

.documents-hero__gradient--left img {
  transform: rotate(42.47deg);
}

.documents-hero__gradient--right {
  width: 2364.725px;
  height: 2404.582px;
  left: 372px;
  top: -465px;
}

.documents-hero__gradient--right img {
  transform: rotate(-143.07deg) scaleY(-1);
}

.documents-hero__folder {
  width: 556px;
  height: 556px;
  right: -347px;
  bottom: -135px;
  transform: scaleX(-1);
}

.documents-hero__pages {
  width: 546px;
  height: 546px;
  left: -300px;
  bottom: -240px;
}

.documents-process__layout {
  position: relative;
}

.documents-process__circle {
  position: absolute;
  bottom: 0;
  left: 14px;
}

.documents-process__circle .slidy-turns-circle {
  margin: 0;
  width: 274px;
  height: 274px;
}

.documents-process__circle .edits-circle-text-svg {
  width: 274px;
  height: 274px;
}

.documents-process__circle .edits-circle-inside-line {
  width: 162px;
  height: 162px;
}

.documents-chips span::before {
  content: "";
  background: url("../images/documents/chip-wheel.svg") center/contain no-repeat;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.documents-advantages .section-sub-title {
  max-width: 492px;
}

.documents-features__star {
  z-index: 0;
  pointer-events: none;
}

.documents-features__flower,
.documents-features__cursor {
  z-index: 0;
  pointer-events: none;
}

.documents-feature {
  z-index: 1;
}

.documents-features__cursor {
  transform: rotate(-50deg);
}

.documents-export {
  padding-bottom: 100px;
}

.documents-case {
  min-height: 332px;
}

.documents-case__columns {
  margin: 28px 0;
}

.documents-case__content {
  padding: 28px 32px;
}

.documents-cases__list {
  gap: 60px;
}

@media (max-width: 1199px) {
  .documents-process__circle {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 28px;
  }
  .documents-process__circle .slidy-turns-circle,
  .documents-process__circle .edits-circle-text-svg {
    width: 332px;
    height: 332px;
  }
  .documents-process__circle .edits-circle-inside-line {
    width: 198px;
    height: 198px;
  }
  .documents-process__circle .edits-circle-arrow-icon {
    width: 88px;
    height: 88px;
  }
  .documents-step {
    padding: 20px;
  }
  .documents-step__number {
    color: var(--accent-color);
    margin-bottom: 40px;
  }
  .documents-step ul {
    line-height: 20px;
    gap: 8px;
  }
  .documents-chips span {
    padding: 6px 8px;
  }
  .documents-step:first-child .documents-chips {
    flex-direction: column;
    align-items: start;
  }
  .documents-page .documents-process {
    padding: 40px 0 80px;
  }
  .documents-process__intro .section-title {
    max-width: 300px;
  }
  .documents-cases__list {
    gap: 20px;
  }
  .documents-case__content {
    padding: 28px 20px;
  }

  @media (max-width: 1024px) {
    .documents-hero__heading {
      margin-top: 28px;
    }
    .documents-hero__second .documents-toggle {
      order: 2;
    }
    .documents-hero__heading .section-sub-title {
      max-width: 332px;
    }
    .documents-hero__heading .section-sub-title strong {
      display: block;
    }
    .documents-hero__actions {
      margin-top: 28px;
    }
    .documents-hero__preview {
      display: block;
      width: 292px;
      height: 218px;
      margin: 157px auto 0;
    }
    .documents-preview {
      position: absolute;
      padding: 14px;
      border-radius: 5px;
      width: 142px;
      min-height: 0;
      margin: 0;
      transform: none;
    }
    .documents-preview--essay {
      display: block;
      left: 0;
      top: 0;
      height: 136px;
    }
    .documents-preview--course {
      left: 150px;
      top: 0;
      height: 96px;
    }
    .documents-preview--report {
      display: block;
      left: 150px;
      top: 104px;
      height: 114px;
    }
    .documents-preview__title,
    .documents-preview p,
    .documents-preview small,
    .documents-preview ul,
    .documents-preview dl,
    .documents-chart__axis,
    .documents-chart__legend {
      display: none;
    }
    .documents-preview__label,
    .documents-preview--course .documents-preview__label,
    .documents-preview--report .documents-preview__label {
      font-size: 14px;
      line-height: 20px;
      padding: 0;
      margin: 0 0 10px;
      background: none;
      color: var(--text-color);
    }
    .documents-preview__label::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--blue-add);
      border-radius: 50%;
    }
    .documents-preview--course .documents-preview__label::before {
      background: var(--green-add);
    }
    .documents-preview--report .documents-preview__label::before {
      background: var(--pink-add);
    }
    .documents-preview__label i {
      display: none;
    }
    .documents-chart {
      padding: 0;
      margin: 0;
      background: none;
    }
    .documents-chart__plot {
      height: 45px;
      margin: 0;
      background: none;
    }
    .documents-chart__plot img {
      transform: scale(0.41);
      top: 0;
      left: 0;
    }
    .documents-preview__skeleton {
      display: grid;
      gap: 8px;
    }
    .documents-preview__skeleton b {
      display: block;
      height: 8px;
      border-radius: 10px;
      background: var(--border);
    }
    .documents-preview__skeleton b:nth-child(3) {
      width: 64%;
    }
    .documents-preview__skeleton b:last-child {
      width: 90%;
    }
    .documents-preview__number {
      font-size: 30px;
      line-height: 34px;
      margin-top: -6px;
      margin-bottom: 4px;
    }
    .documents-preview__badge {
      top: -110px;
      left: 0;
      right: auto;
      font-size: 14px;
      line-height: 18px;
      padding: 8px 14px;
    }
    .documents-preview--report .documents-preview__badge {
      top: 66px;
      right: auto;
      left: -150px;
    }
    .documents-preview__toolbar {
      top: 40px;
      left: -163px;
      font-size: 9px;
      word-spacing: 4px;
      padding: 3px 6px;
      white-space: nowrap;
    }
    .documents-hero__mobile-toolbar {
      position: absolute;
      z-index: 2;
      left: calc(50% - 120px);
      top: 488px;
      width: 275px;
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      padding-right: 50px;
      font-size: 8px;
      line-height: 12px;
    }
    .documents-hero__mobile-toolbar span {
      padding: 4px 9px;
      background: var(--main-container);
      border-radius: 2px;
    }
    .documents-hero__mobile-toolbar span:nth-child(3) {
      margin-left: 54px;
    }
    .documents-hero__mobile-toolbar span:nth-child(4) {
      margin-left: 94px;
    }
    .documents-hero__mobile-toolbar i {
      position: absolute;
      top: 14px;
      right: -12px;
      padding: 7px;
      font-size: 14px;
      color: var(--text-color5);
      border: 1px solid var(--accent-color);
      transform: rotate(-10deg);
      opacity: 0.5;
    }
    .documents-hero__star {
      width: 120px;
      left: -40px;
      top: 480px;
    }
    .documents-hero__link {
      width: 190px;
      right: -90px;
      top: 330px;
      transform: rotate(20deg);
    }
    .documents-hero__folder {
      width: 240px;
      height: 240px;
      right: -140px;
      bottom: -98px;
    }
    .documents-hero__pages {
      display: none;
    }
    .documents-hero__gradient--left {
      display: none;
    }
    .documents-hero__gradient--right {
      width: 1215px;
      height: 1227px;
      left: -180px;
      top: 214px;
    }
    .documents-hero__gradient--right img {
      transform: rotate(-139.56deg) scaleY(-1) scale(0.5085);
    }
  }
}

.documents-category__picture {
  display: block;
  flex: 0 0 232px;
}

.documents-category__image {
  display: block;
}

.documents-category:nth-child(even) .documents-category__picture {
  order: 2;
}

.documents-process__circle .slidy-turns-circle {
  position: relative;
  max-width: none;
  top: auto;
  left: auto;
  bottom: auto;
}

.documents-process__circle .edits-circle-text-svg {
  max-width: none;
}

.documents-process__circle .edits-circle-inside-line {
  max-width: none;
}

@media (max-width: 1199px) {
  .documents-category__picture {
    flex-basis: auto;
  }
  .documents-category:nth-child(even) .documents-category__picture {
    order: 0;
  }
  .documents-process__circle {
    min-height: 332px;
  }

  @media (max-width: 1024px) {
    .documents-hero__preview {
      margin-top: 157px;
    }
  }
}

.documents-prompts__group {
  display: contents;
}

@media (max-width: 1199px) {
  .documents-prompts {
    padding: 40px 0 60px;
  }
  .documents-prompts__list {
    padding: 0;
  }
  .documents-prompts__group {
    display: grid;
    gap: 8px;
  }
  .documents-prompt,
  .documents-prompt:nth-child(n + 7) {
    grid-column: auto;
    display: flex;
    min-height: 72px;
    padding: 13px 14px 13px 20px;
    border-radius: 12px;
  }
  .documents-prompt strong {
    font-size: 16px;
    line-height: 20px;
  }
  .documents-prompt small {
    font-size: 14px;
    line-height: 18px;
  }
  .documents-prompt__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    font-size: 24px;
    border: 1px solid color-mix(in srgb, var(--blue-add) 10%, transparent);
    padding: 0;
  }
  .documents-case__result {
    border: 1px dashed var(--accent-color);
    width: calc(100% - 40px);
    left: 20px;
    bottom: -24px;
    padding: 16px;
  }
  .documents-case__result ul {
    font-size: 14px;
    line-height: 20px;
  }
  .documents-case__content {
    padding-top: 54px;
  }
  .documents-case__columns ul {
    font-size: 16px;
    line-height: 22px;
  }
  .documents-case .documents-chips span {
    font-size: 14px;
    line-height: 18px;
    padding: 8px 10px;
  }
  .documents-case .documents-chips {
    max-width: none;
  }
  .documents-cases .text-blue {
    color: var(--text-color);
  }
}

.documents-feature h3 {
  color: #fafcff;
}

.documents-feature--1 .documents-feature__art {
  width: 320px;
  height: 320px;
  right: -108px;
  top: 4px;
}

.documents-feature--2 .documents-feature__art {
  width: 320px;
  height: 277px;
  right: -45px;
  top: -38px;
  transform: rotate(12deg);
}

.documents-feature--3 .documents-feature__art {
  width: 400px;
  height: 400px;
  max-width: none;
  right: -90px;
  top: -135px;
  transform: rotate(46.57deg);
}

.documents-feature--1::before {
  background-size: 1100px;
  background-position: center;
  top: -40px;
  right: -20%;
  transform: rotate(180deg);
}

.documents-feature--2::before {
  background-size: 900px;
  top: -100px;
}

.documents-feature--3::before {
  background-size: 1100px;
  top: -70px;
}

.documents-calculator .save-slidy-data .documents-emoji {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.documents-calculator .save-slidy-data {
  gap: 10px;
}

.documents-calculator .save-slidy-numb {
  gap: 6px;
}

@media (max-width: 1199px) {
  .documents-feature--1 .documents-feature__art {
    width: 240px;
    height: 240px;
    right: -60px;
    top: -10px;
  }
  .documents-feature--2 .documents-feature__art {
    width: 280px;
    height: 242px;
    top: -45px;
    right: -45px;
  }
  .documents-feature--3 .documents-feature__art {
    width: 330px;
    height: 330px;
    top: -120px;
    right: -60px;
  }
  .documents-calculator .per-month-box {
    gap: 0;
    padding-bottom: 78px;
  }
  .documents-calculator .per-month-text {
    margin-top: 32px;
    margin-bottom: 16px;
  }
  .documents-calculator .save-slidy-data {
    gap: 8px;
  }
  .documents-calculator .save-slidy-data span {
    font-size: 16px;
    gap: 3px;
  }
  .documents-calculator .save-slidy-data p {
    font-size: 16px;
  }
  .documents-calculator .save-slidy-data sub {
    height: 20px;
  }
}

@media (max-width: 1199px) {
  .documents-carousel [data-slides] {
    flex-wrap: nowrap;
  }
}

.documents-preview__file {
  display: block;
  flex-shrink: 0;
}

.documents-chart__canvas {
  position: relative;
  width: 280px;
  height: 110px;
  transform-origin: top left;
}

.documents-chart__canvas img {
  position: absolute;
  transform: none;
}

.documents-chart__canvas .documents-chart__point--1 {
  left: 2.6px;
  top: 94.6px;
}

.documents-chart__canvas .documents-chart__point--2 {
  left: 69.6px;
  top: 74.6px;
}

.documents-chart__canvas .documents-chart__point--3 {
  left: 136.6px;
  top: 56.6px;
}

.documents-chart__canvas .documents-chart__point--4 {
  left: 203.6px;
  top: 38.6px;
}

.documents-chart__canvas .documents-chart__halo {
  left: 264px;
  top: 2px;
}

.documents-chart__canvas .documents-chart__result {
  left: 267.8px;
  top: 5.75px;
}

.documents-chart__canvas .documents-chart__center {
  left: 272.5px;
  top: 10.4px;
}

@media (max-width: 1199px) {
  .documents-cases .section-title {
    max-width: 310px;
  }
  .documents-cases .text-blue {
    display: inline;
  }
  .documents-carousel [data-slides] {
    align-items: flex-start;
    overflow-y: hidden;
  }

  @media (max-width: 1024px) {
    .documents-preview__file {
      display: none;
    }
    .documents-chart__canvas {
      transform: scale(0.4);
    }
    .documents-chart__canvas .documents-chart__area,
    .documents-chart__canvas .documents-chart__line {
      top: 12px;
      left: 6px;
    }
  }
}
/* Original decorative assets use the Figma illustration coordinates. */
.documents-hero__star {
  width: 236px;
  height: 241px;
  left: -78px;
  top: 286px;
}
.documents-hero__link {
  width: 199px;
  height: 199px;
  right: -65px;
  top: 281px;
  transform: rotate(29.05deg);
}
.documents-floating {
  position: absolute;
  z-index: 2;
  padding: 12px;
  background: var(--main-container);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.documents-floating img {
  position: static;
}
.documents-floating--link {
  left: 1284px;
  top: 532px;
  transform: rotate(15deg);
}
.documents-floating--table {
  left: 1351px;
  top: 482px;
  padding: 10px;
}
.documents-floating--print {
  left: 85px;
  top: 568px;
  transform: rotate(8deg);
}
.documents-floating--image {
  left: 20px;
  top: 550px;
  transform: rotate(-12deg);
}
.documents-feature--1::before {
  width: 1600px;
  height: 800px;
  left: calc(50% + 260.12px);
  top: calc(50% + 83.73px);
  right: auto;
  transform: translate(-50%, -50%) rotate(52.88deg) scaleY(-1);
  background: url("../images/documents/feature-wave1.webp") center/contain
    no-repeat;
}
.documents-feature--1::after {
  content: "";
  position: absolute;
  width: 1600px;
  height: 800px;
  left: calc(50% + 275.5px);
  top: calc(50% + 95.93px);
  transform: translate(-50%, -50%) rotate(49.45deg);
  background: url("../images/documents/feature-wave2.webp") center/contain
    no-repeat;
}
.documents-feature--2::before {
  width: 1660px;
  height: 553px;
  left: -273.5px;
  top: -222.2px;
  right: auto;
  transform: rotate(178.81deg) scaleY(-1);
  background: url("../images/documents/feature-wave3.webp") center/contain
    no-repeat;
}
.documents-feature--3::before {
  width: 660px;
  height: 660px;
  left: calc(50% - 34.14px);
  top: calc(50% - 207.14px);
  right: auto;
  transform: translate(-50%, -50%) rotate(-63.94deg) scaleY(-1);
  background: url("../images/documents/case-bg-study.webp") center/contain
    no-repeat;
}
.documents-feature--4::before {
  width: 1100px;
  height: 1100px;
  left: -122px;
  top: -811px;
  right: auto;
  transform: none;
  border-radius: 0;
  background: url("../images/documents/feature-wave4.webp") center/contain
    no-repeat;
}
.documents-feature__white-star {
  position: absolute;
  width: 120px;
  height: 120px;
  left: calc(50% - 14.5px);
  top: -30px;
  z-index: 1;
}
.documents-feature__gold-star {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 128px;
  top: 55px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .documents-floating--link {
    left: 127px;
    top: 669px;
    padding: 9px;
    transform: rotate(12deg) scale(0.75);
  }
  .documents-floating--print {
    left: 298px;
    top: 532px;
    padding: 9px;
    transform: rotate(15deg) scale(0.7);
  }
  .documents-floating--table,
  .documents-floating--image {
    display: none;
  }
  .documents-feature--1::before,
  .documents-feature--1::after {
    top: calc(50% - 20px);
  }
  .documents-feature__white-star {
    left: 120px;
    top: -20px;
    width: 80px;
    height: 80px;
  }
  .documents-feature__gold-star {
    left: 70px;
    top: 80px;
    width: 40px;
    height: 40px;
  }
  .documents-page .documents-cases {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .documents-case__visual {
    height: 320px;
  }
  .documents-export .section-titles {
    margin-bottom: 20px;
  }
  .documents-page .documents-export {
    padding-bottom: 60px;
  }

  @media (max-width: 1024px) {
    .documents-hero__star {
      width: 120px;
      height: 120px;
      left: -40px;
      top: 490px;
    }
    .documents-hero__link {
      width: 190px;
      height: 190px;
      right: -90px;
      top: 330px;
      transform: rotate(20deg);
    }
  }
}

/* Background treatment follows team-main and join-us-min on the team page. */
html[data-theme="dark"] .documents-hero {
  background-image: url("/assets/images/documents/documents-hero-bg-dark.webp");
}
.documents-hero .power-cnt {
  width: 100%;
}
@media (min-width: 1025px) {
  .documents-hero__preview {
    width: 100%;
  }
}
@media (min-width: 1700px) {
  .documents-hero {
    background-size: 260%;
  }
}
@media (min-width: 2000px) {
  .documents-hero {
    background-size: cover;
  }
}
@media (max-width: 1024px) {
  .documents-hero {
    padding-top: 80px;
  }
}

/* Compact layouts keep cards readable instead of stretching phone artwork across tablets. */
@media (max-width: 1199px) {
  .documents-carousel {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }
  .documents-category__picture {
    width: 100%;
    max-width: 332px;
    margin-inline: auto;
  }
  .documents-category__image {
    width: 100%;
  }
  .documents-process__layout {
    max-width: 620px;
    margin-inline: auto;
  }
  .documents-process__intro {
    position: static;
    width: 100%;
  }
  .documents-process__intro .section-titles {
    align-items: center;
    width: 100%;
  }
  .documents-process__intro .section-title,
  .documents-process__intro .section-sub-title {
    max-width: 520px;
    margin-inline: auto;
    text-align: center;
  }
  .documents-features {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    gap: 20px;
  }
  .documents-case__visual {
    max-width: 420px;
    margin-inline: auto;
  }
  .documents-export__card > img {
    width: 100%;
    object-fit: contain;
  }
  .documents-faq .faq-columns {
    max-width: 680px;
    margin-inline: auto;
  }
  .documents-calculator .calculate-much {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }
  .documents-calculator .calculate-boxes,
  .documents-calculator .save-slidy {
    width: 100%;
  }
  .documents-cta .section-titles {
    max-width: 620px;
    margin-inline: auto;
  }
  .documents-cta__chips {
    margin-inline: auto;
  }
  .documents-cta {
    padding-top: 40px;
    padding-bottom: 160px;
  }

  @media (max-width: 1024px) {
    .documents-page main > section > .container,
    .documents-hero .container,
    .documents-cta .container {
      width: 100%;
      max-width: 960px;
      padding-left: clamp(14px, 4vw, 32px);
      padding-right: clamp(14px, 4vw, 32px);
      margin-inline: auto;
    }
    .documents-hero__preview {
      width: 292px;
      max-width: 100%;
      margin-inline: auto;
    }
    .documents-hero__heading {
      width: 100%;
    }
    .documents-hero__heading .section-sub-title {
      margin-inline: auto;
    }
    .documents-hero__actions {
      align-items: center;
    }
    .documents-hero__actions > a {
      width: 100%;
      max-width: 360px;
    }
  }
}
@media (min-width: 600px) and (max-width: 1199px) {
  .documents-page .section-title {
    font-size: 32px;
    line-height: 36px;
  }
  .documents-page .section-big-title {
    font-size: 40px;
    line-height: 44px;
  }
  .documents-category {
    padding: 24px;
  }
  .documents-category__picture {
    max-width: 280px;
  }
  .documents-step {
    padding: 28px;
  }
  .documents-step__number {
    margin-bottom: 24px;
  }
  .documents-process__circle {
    margin-inline: auto;
  }
  .documents-faq summary {
    padding: 18px 20px;
  }
  .documents-calculator .calculate-boxes,
  .documents-calculator .save-slidy {
    padding: 28px;
  }
  .documents-cta__chips {
    max-width: 520px;
  }

  @media (max-width: 1024px) {
    .documents-hero__heading .section-sub-title {
      max-width: 480px;
    }
    .documents-hero__heading .section-sub-title strong {
      display: inline;
    }
    .documents-hero__actions {
      flex-direction: row;
      justify-content: center;
      gap: 12px;
    }
    .documents-hero__actions > a {
      width: auto;
    }
    .documents-hero {
      min-height: 820px;
    }
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .documents-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
  }
  .documents-feature,
  .documents-feature--1 {
    height: 380px;
  }
  .documents-prompts .documents-carousel {
    max-width: 760px;
  }
  .documents-prompts__group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .documents-advantages > .loss-quality-elips {
    top: -60px;
  }
  .documents-advantages > .loss-quality-elips img {
    height: 300px;
  }

  @media (max-width: 1024px) {
    .documents-hero__mobile-toolbar {
      top: 350px;
    }
  }
}
@media (min-width: 700px) and (max-width: 1199px) {
  .documents-categories .documents-carousel {
    max-width: 760px;
  }
  .documents-category {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .documents-category__picture {
    flex: 0 0 200px;
    width: 200px;
    margin: 0;
  }
  .documents-category__content {
    flex: 1;
    min-width: 0;
  }
  .documents-category__bottom {
    margin-top: 20px;
  }
  .documents-category__button {
    margin-top: 0;
  }
}

/* Category cards share a fixed desktop rhythm and equal-height compact slides. */
.documents-category__bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.documents-category__tags {
  gap: 10px;
}
.documents-category__tags a {
  font-weight: 500;
}
@media (min-width: 1200px) {
  .documents-category {
    height: 274px;
  }
  .documents-category__content {
    height: 232px;
    min-height: 0;
  }
  .documents-category__bottom {
    position: relative;
    padding-right: 120px;
  }
  .documents-category--career .documents-category__bottom,
  .documents-category--marketing .documents-category__bottom {
    padding-right: 300px;
  }
  .documents-category__button {
    position: absolute;
    right: 0;
    bottom: 0;
    padding-left: 20px;
    padding-right: 12px;
  }
}
@media (max-width: 1199px) {
  .documents-categories .documents-carousel [data-slides] {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    align-items: stretch;
  }
  .documents-category {
    height: 100%;
  }
  .documents-category__content {
    flex: 1;
  }
  .documents-category__bottom {
    flex: 1;
  }
  .documents-category__tags {
    flex: 0;
    gap: 6px;
  }
  .documents-category__button {
    margin-top: auto;
  }
}
@media (min-width: 700px) and (max-width: 1199px) {
  .documents-category {
    align-items: stretch;
  }
  .documents-category__picture {
    align-self: center;
  }
}

/* Shared comparison controls and typography, with native table row alignment. */
.documents-comparison {
  width: 100%;
  margin-inline: auto;
  scroll-margin-top: 90px;
}
.documents-comparison .section-sub-title {
  opacity: 1;
  color: #b7b9bb;
}
.documents-comparison .compare-tabs-mobile {
  display: none;
}
.documents-comparison .compare-tabs-mobile [aria-pressed="true"] {
  background: #fff;
  color: #161616;
}
.documents-comparison__table {
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  background: #161616;
  overflow: hidden;
}
.documents-comparison__table::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 33.333333%;
  width: 33.333333%;
  border: 1px solid var(--accent-color);
  border-radius: 12px;
  pointer-events: none;
}
.documents-comparison table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
  text-align: left;
}
.documents-comparison th,
.documents-comparison td {
  width: 33.333333%;
  vertical-align: middle;
}
.documents-comparison thead th {
  padding: 0;
}
.documents-comparison tbody th,
.documents-comparison tbody td {
  height: 66px;
  padding: 20px 24px;
  border-bottom: 1px solid #ffffff14;
}
.documents-comparison tbody tr:last-child > * {
  border-bottom: 0;
}
.documents-comparison .compare-label {
  font-weight: 400;
}
.documents-comparison [data-tool="slidy"] .compare-text {
  font-weight: 600;
}
.documents-comparison .documents-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  font-family:
    "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 20px;
  line-height: 1;
  object-fit: contain;
  position: static;
}
.documents-comparison .icon-check {
  font-size: 18px;
  background: #11c521;
  margin-right: 8px;
  vertical-align: -2px;
}
.documents-comparison .btn-start {
  margin-top: 28px;
}
.documents-advantages > .documents-comparison-bg {
  z-index: 0;
}
.documents-comparison-bg picture {
  display: block;
  width: 100%;
}
.documents-comparison-bg img {
  display: block;
  height: 650px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .documents-comparison .compare-head {
    padding-inline: 16px;
  }
  .documents-comparison tbody th,
  .documents-comparison tbody td {
    padding: 18px 16px;
  }
  .documents-comparison .compare-label,
  .documents-comparison .compare-text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .documents-comparison {
    max-width: 500px;
  }
  .documents-comparison .section-titles {
    margin-bottom: 0;
  }
  .documents-comparison .section-title {
    max-width: 330px;
  }
  .documents-comparison .section-sub-title {
    max-width: 332px;
  }
  .documents-comparison .compare-tabs-mobile {
    display: flex;
    margin: 20px 0 28px;
  }
  .documents-comparison__table,
  .documents-comparison__table::after {
    border-radius: 10px;
  }
  .documents-comparison__table::after {
    left: 50%;
    width: 50%;
  }
  .documents-comparison[data-selected="word"]
    .documents-comparison__table::after {
    display: none;
  }
  .documents-comparison thead {
    display: none;
  }
  .documents-comparison th,
  .documents-comparison td {
    width: 50%;
  }
  .documents-comparison tbody th,
  .documents-comparison tbody td {
    height: 78px;
    padding: 18px 16px;
  }
  .documents-comparison .compare-label,
  .documents-comparison .compare-text {
    font-size: 14px;
    line-height: 18px;
  }
  .documents-comparison .documents-emoji {
    width: 16px;
    height: 16px;
    font-size: 16px;
    margin-right: 4px;
  }
  .documents-comparison .icon-check {
    font-size: 12px;
    margin-right: 4px;
    vertical-align: -1px;
  }
  .documents-comparison:not([data-selected="word"]) [data-tool="word"],
  .documents-comparison[data-selected="word"] [data-tool="slidy"] {
    display: none;
  }
  .documents-comparison .btn-start {
    width: 290px;
    max-width: 100%;
    justify-content: center;
  }
  .documents-comparison-bg img {
    height: 850px;
    object-fit: fill;
  }
}

/* Figma ellipse shared by the transitions after comparison and calculator.
   The mask keeps the curve in the adjacent section's theme colour. */
.documents-advantages,
.documents-calculator {
  --documents-curve-height: clamp(64px, 8.333333vw, 120px);
  --documents-ellipse-height: clamp(267px, 34.722222vw, 500px);
  --documents-ellipse-width: 152.777778%;
}
.documents-calculator {
  position: relative;
}
.documents-advantages::after,
.documents-calculator::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: calc(var(--documents-curve-height) + 1px);
  z-index: 2;
  pointer-events: none;
  background: var(--bg-color);
  mask: url("../images/documents/section-curve.svg") center top /
    var(--documents-ellipse-width) var(--documents-ellipse-height) no-repeat;
}
.documents-calculator::after {
  background: #161616;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .documents-calculator {
    padding-bottom: calc(var(--documents-curve-height) + 40px);
  }
}
@media (max-width: 767px) {
  .documents-advantages,
  .documents-calculator {
    --documents-curve-height: 40px;
    --documents-ellipse-height: 160px;
    --documents-ellipse-width: 195.555556%;
  }
}

/* Phone artwork includes the decorative cards; only live controls remain above it. */
@media (max-width: 500px) {
  html .documents-hero {
    background-color: #e8eefb;
    background-image: url("../images/documents/documents-hero-mob-bg.webp?v=3");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
  .documents-hero::before,
  .documents-hero__preview,
  .documents-hero__mobile-toolbar,
  .documents-hero__heading .section-sub-title,
  .documents-hero .documents-toggle {
    display: none;
  }
  .documents-hero .section-big-title {
    color: #1f1f1f;
  }
  .documents-hero .documents-breadcrumb {
    color: #1f1f1f;
  }
  .documents-hero .documents-breadcrumb a,
  .documents-hero .documents-breadcrumb > span:nth-child(2) {
    color: #777;
  }
  .documents-cta {
    background-image: url("../images/documents/documents-cta-mob-bg.webp");
    background-size: cover;
    background-position: center bottom;
  }
}
@media (max-width: 599px) {
  .documents-cta {
    padding-top: 100px;
  }
}
@media (min-width: 600px) and (max-width: 1199px) {
  .documents-cta {
    background-image: url("../images/documents/documents-cta-bg.webp");
    background-size: cover;
  }

  @media (max-width: 1024px) {
    .documents-hero {
      min-height: 900px;
    }
  }
}

/* Hero switches independently of the card/carousel breakpoints. */
@media (min-width: 501px) and (max-width: 1024px) {
  html .documents-hero {
    min-height: 1040px;
    padding-top: 80px;
    background-color: #e8eefb;
    background-image: url("../images/documents/documents-hero-mob-bg.webp?v=3");
    background-size: auto 100%;
    background-position: center bottom;
  }
  .documents-hero::before,
  .documents-hero__preview,
  .documents-hero__mobile-toolbar,
  .documents-hero__heading .section-sub-title,
  .documents-hero .documents-toggle {
    display: none;
  }
  .documents-hero .section-big-title,
  .documents-hero .documents-breadcrumb {
    color: #1f1f1f;
  }
  .documents-hero .documents-breadcrumb a {
    color: #777;
  }
  .documents-hero__heading {
    max-width: 540px;
  }
  .documents-hero__actions {
    flex-direction: column;
    max-width: 360px;
    margin-inline: auto;
  }
  .documents-hero__actions > a {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .documents-hero {
    min-height: 880px;
    background-size: auto 100%;
    background-position: center bottom;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  html .documents-hero {
    background-image: url("../images/documents/documents-hero-bg.webp");
    background-size: auto 100%;
  }
  .documents-hero::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: url("../images/documents/documents-hero-mob-bg.webp?v=3") center
      bottom / auto 100% no-repeat;
    mask-image: linear-gradient(
      to right,
      transparent calc(50% - 225px),
      #000 calc(50% - 205px),
      #000 calc(50% + 205px),
      transparent calc(50% + 225px)
    );
    pointer-events: none;
    z-index: 0;
  }
  .documents-hero .container {
    position: relative;
    z-index: 1;
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .documents-hero::after {
    mask-image:
      linear-gradient(
        to right,
        transparent calc(50% - 225px),
        #000 calc(50% - 205px),
        #000 calc(50% + 205px),
        transparent calc(50% + 225px)
      ),
      linear-gradient(to bottom, #000 88%, transparent 100%);
    mask-composite: intersect;
  }
}

@media (max-width: 767px) {
  /* Align with the first text line while preserving the Figma inline wrapping. */
  .documents-comparison .documents-emoji {
    transform: translateY(-1px);
  }
}

@media (max-width: 1024px) {
  html[data-theme="dark"] .documents-hero {
    background-color: var(--primary-cont);
  }
  html[data-theme="dark"] .documents-hero .section-big-title,
  html[data-theme="dark"] .documents-hero .documents-breadcrumb {
    color: var(--text-color);
  }
  html[data-theme="dark"] .documents-hero .documents-breadcrumb a,
  html[data-theme="dark"]
    .documents-hero
    .documents-breadcrumb
    > span:nth-child(2) {
    color: var(--text-color6);
  }
}
@media (max-width: 500px) {
  html[data-theme="dark"] .documents-hero {
    background-image: url("../images/documents/documents-hero-mob-bg-dark.webp");
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  html[data-theme="dark"] .documents-hero {
    background-image: url("../images/documents/documents-hero-bg-dark.webp");
  }
  html[data-theme="dark"] .documents-hero::after {
    background-image: url("../images/documents/documents-hero-mob-bg-dark.webp");
  }
}
