@charset "UTF-8";

:root {
  --theme-primary: #007605;
  --bot-switcher-gap: 20px;
  --theme-gray: #6f6f6f;
  --theme-gray-dark: #262626;
  --theme-surface-gray: #f4f4f4;
  --upload-visible-count: 5;
  --upload-file-row-height: 60px;
  --upload-file-gap: 12px;
  --upload-file-row-overflow: 3px;
  --upload-feedback-line-height: 1.35;
  --upload-feedback-visible-lines: 3;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Light.woff2") format("woff2"), url("../fonts/Satoshi-Light.woff") format("woff"), url("../fonts/Satoshi-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-LightItalic.woff2") format("woff2"), url("../fonts/Satoshi-LightItalic.woff") format("woff"), url("../fonts/Satoshi-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2"), url("../fonts/Satoshi-Regular.woff") format("woff"), url("../fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Italic.woff2") format("woff2"), url("../fonts/Satoshi-Italic.woff") format("woff"), url("../fonts/Satoshi-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2"), url("../fonts/Satoshi-Medium.woff") format("woff"), url("../fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2"), url("../fonts/Satoshi-Bold.woff") format("woff"), url("../fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  max-height: 1000000px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--theme-primary);
  background: #fff;
  font: 16px/1.5em "Satoshi", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
    line-height: 1.5em;
  }
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border-style: none;
}

main {
  display: block;
  flex-grow: 1;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
}

ul,
ol,
dl,
p,
h1,
h2,
h3,
h4,
h5,
h6,
address,
form,
table,
blockquote {
  margin: 0 0 20px;
}

ul {
  padding-left: 20px;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input[type="text"],
textarea {
  -webkit-appearance: none;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 18px;
  font-family: "Satoshi", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  border: 1px solid #000;
  border-radius: 0;
}

input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-color: #000;
}

textarea {
  overflow: auto;
  resize: vertical;
  vertical-align: top;
}

button,
input[type="submit"] {
  height: 40px;
  padding: 13px 25px;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  background: #000;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s;
}

button:hover,
input[type="submit"]:hover {
  color: #000;
  background: #fff;
}

h1,
.h1 {
  font-size: calc(40px + 26 * (100vw - 365px) / 785);
  line-height: 0.94;
  font-weight: 500;
  color: #262626;
  margin: 0 0 0.4em;
  letter-spacing: -0.04em;
}

@media (min-width: 1150px) {
  h1,
  .h1 {
    font-size: 66px;
  }
}

h1 mark,
.h1 mark,
h2 mark,
.h2 mark,
h3 mark,
.h3 mark {
  color: var(--theme-primary);
  background: none;
  padding: 0;
}

h2,
.h2 {
  font-size: calc(30px + 28 * (100vw - 365px) / 785);
  line-height: 1.31;
  font-weight: 500;
  color: #262626;
  margin: 0 0 0.2em;
  letter-spacing: -0.04em;
}

@media (min-width: 1150px) {
  h2,
  .h2 {
    font-size: 58px;
  }
}

h3,
.h3 {
  font-size: calc(20px + 10 * (100vw - 365px) / 785);
  line-height: 1.27;
  font-weight: 500;
  color: #262626;
  margin: 0 0 1.2em;
  letter-spacing: -0.04em;
}

@media (min-width: 1150px) {
  h3,
  .h3 {
    font-size: 30px;
  }
}

p {
  margin: 0 0 1.8em;
}

noscript {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: block;
  margin: 0;
  padding: 5px 0;
  color: #000;
  background: #ff8f8f;
  font-size: 14px;
  text-align: center;
}

.accessibility {
  position: absolute;
  top: auto;
  left: -200vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.accessibility:focus {
  position: static;
  width: auto;
  height: auto;
}

.nav-drop ul,
.accordion,
.footer-holder .primary-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-active #footer,
.nav-active #main {
  filter: blur(5px);
}

[id="header"] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
}

.header-holder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 20px 120px;
}

@media (min-width: 768px) {
  .header-holder {
    min-height: 72px;
  }
}

.maintenance-banner {
  padding: 0 0 12px;
  color: var(--theme-primary);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

@media (min-width: 768px) {
  .maintenance-banner {
    font-size: 13px;
  }
}

.logo {
  position: absolute;
  top: 50%;
  left: 0;
  margin-right: 20px;
  padding-bottom: 4px;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

.logo a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #262626;
}

.logo-bots {
  display: inline-flex;
  align-items: center;
  gap: var(--bot-switcher-gap);
}

.logo-bots a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo-bots img {
  display: block;
  width: 27px;
  height: auto;
}

.logo-bots a.is-active {
  opacity: 1;
}

.logo-bots a:not(.is-active) {
  opacity: 0.6;
}

.logo-bots a:not(.is-active):hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .btn-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

@media (max-width: 767.98px) {
  .btn-wrap .btn {
    width: 100%;
  }
}

.nav-drop {
  position: absolute;
  top: 100%;
  left: -15px;
  right: -15px;
  z-index: 999;
  padding: 30px 15px;
  color: #575757;
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  font-size: 24px;
  line-height: 1.2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 768px) {
  .nav-drop {
    position: static;
    padding: 0;
    background: none;
    backdrop-filter: none;
    font-size: 15px;
    opacity: 1;
    visibility: visible;
  }
}

.nav-active .nav-drop {
  min-height: calc(100vh - 72px);
  opacity: 1;
  visibility: visible;
}

.nav-drop > ul {
  margin-bottom: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .nav-drop > ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}

.nav-drop li {
  position: relative;
  padding: 10px;
}

@media (min-width: 768px) {
  .nav-drop li {
    padding: 0 10px;
  }
}

.nav-drop li:hover > a,
.nav-drop li.active a {
  opacity: 0.5;
}

.nav-drop a {
  color: inherit;
  transition: opacity 0.5s;
}

.nav-opener {
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  font-size: 0;
  line-height: 0;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .nav-opener {
    display: none;
  }
}

.nav-opener:before,
.nav-opener:after,
.nav-opener span {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
  transform: translateY(-50%);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.nav-opener:before,
.nav-opener:after {
  content: "";
}

.nav-opener:before {
  transform: translateY(-7px);
}

.nav-opener:after {
  transform: translateY(4px);
}

.nav-active .nav-opener span {
  opacity: 0;
  transform: rotate(45deg);
}

.nav-active .nav-opener:before {
  transform: rotate(45deg) translateY(0);
}

.nav-active .nav-opener:after {
  transform: rotate(-45deg) translateY(0);
}

[id="wrapper"] {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background: #fff;
}

.container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
}

.viewport-section h1,
.viewport-section h2,
.viewport-section h3:not(.feature-card__title) {
  opacity: 0;
  transform: translateY(20px);
}

.viewport-section.in-viewport h1,
.viewport-section.in-viewport h2,
.viewport-section.in-viewport h3:not(.feature-card__title) {
  animation: fade 1s forwards;
}

@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn.btn {
  display: inline-block;
  padding: 13px 25px;
  font-size: 17px;
  line-height: 20px;
  text-align: center;
  vertical-align: top;
  border: 0 solid transparent;
  border-radius: 10px;
  transition: all 0.5s;
}

.btn.btn:hover {
  box-shadow: 0 0 0 3px rgba(0, 118, 5, 0.2);
}

.btn.btn--primary {
  color: #fff;
  background: var(--theme-primary);
  border-color: var(--theme-primary);
}

.btn.btn--primary:hover {
  color: #fff;
  background: var(--theme-primary);
  border-color: var(--theme-primary);
}

.hero-section {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 100px 0 40px;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 100px 0;
  }
}

.hero-section__columns {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .hero-section__columns {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.hero-section__col:first-child {
  margin-bottom: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-section__col:first-child {
    width: 57%;
    margin-bottom: 0;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .hero-section__col:last-child {
    width: 42%;
  }
}

@media (min-width: 768px) {
  .hero-section__col.automation-hero__col-upload {
    width: 30%;
  }
}

.hero-section__visual {
  padding: 15px 10% 50px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-section__visual {
    padding: 0;
  }
}

.columns-section {
  padding: 60px 0;
  color: #575757;
  background: url("../images/bg-container.jpg") no-repeat 50% 50%/cover;
}

@media (min-width: 768px) {
  .columns-section {
    padding: 128px 0 117px;
  }
}

@media (min-width: 768px) {
  .columns-section__columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .columns-section__col {
    width: 55%;
  }

  .columns-section__col:first-child {
    width: 38%;
    margin-bottom: 0;
  }
}

.columns-section__col:first-child {
  margin-bottom: 30px;
}

#automationen .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.grid-columns {
  display: grid;
  gap: 18px 20px;
}

@media (min-width: 576px) {
  .grid-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-columns p {
  margin: 0 0 0.8em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(260px, 28vw, 320px), 1fr));
  justify-content: center;
  justify-items: center;
  gap: 56px 26px;
  width: min(100%, 1068px);
}

#automationen.automations-loading .filter-chips,
#automationen.automations-loading .feature-grid {
  pointer-events: none;
}

.automations-skeleton-chip {
  width: 88px;
  height: 32px;
  border-radius: 14px;
  display: inline-block;
}

.feature-card--skeleton {
  opacity: 1;
  transform: none;
  cursor: default;
}

.feature-card--skeleton .feature-card__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.automations-skeleton-tag {
  width: 96px;
  min-height: 30px;
}

.automations-skeleton-line {
  display: block;
  border-radius: 8px;
}

.automations-skeleton-line--title {
  height: 21px;
  width: 78%;
}

.automations-skeleton-line--text {
  height: 14px;
  width: 100%;
}

.automations-skeleton-line--text-short {
  height: 14px;
  width: 66%;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 55%;
  align-items: center;
  justify-content: center;
  margin: 0 auto 128px;
}

.filter-chip {
  height: auto;
  min-height: 20px;
  padding: 7px 12px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #6f8d73;
  background: #b8e0ba;
  border: 1px solid rgba(111, 141, 115, 0.16);
  border-radius: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  opacity: 0.6;
  color: #6f8d73;
  background: #b8e0ba;
}

.filter-chip--evaluation {
  color: #be9d2c;
  background: #f5e79f;
  border-color: rgba(190, 157, 44, 0.18);
}

.filter-chip--evaluation:hover,
.filter-chip--evaluation:focus-visible {
  color: #be9d2c;
  background: #f5e79f;
}

.filter-chip--redaction {
  color: #4b67dc;
  background: #c3d2f2;
  border-color: rgba(75, 103, 220, 0.18);
}

.filter-chip--redaction:hover,
.filter-chip--redaction:focus-visible {
  color: #4b67dc;
  background: #c3d2f2;
}

.filter-chip--other {
  color: #985fb5;
  background: #dfbcf1;
  border-color: rgba(152, 95, 181, 0.2);
}

.filter-chip--other:hover,
.filter-chip--other:focus-visible {
  color: #985fb5;
  background: #dfbcf1;
}

.filter-chip--beta {
  color: #5f6368;
  background: #eceff1;
  border-color: rgba(95, 99, 104, 0.22);
}

.filter-chip--beta:hover,
.filter-chip--beta:focus-visible {
  color: #5f6368;
  background: #eceff1;
}

.filter-chip[aria-pressed="false"] {
  color: #6f6f6f;
  background: #e2e2e2;
  border-color: rgba(89, 94, 102, 0.15);
  opacity: 0.6;
}

.filter-chip[aria-pressed="false"]:hover,
.filter-chip[aria-pressed="false"]:focus-visible {
  color: #6f6f6f;
  background: #e2e2e2;
}

.feature-card {
  position: relative;
  overflow: visible;
  opacity: 0;
  transform: translateY(20px);
  min-height: 106px;
  max-width: 320px;
  width: 100%;
  cursor: pointer;
}

.feature-card__container {
  width: 100%;
  position: relative;
  padding: 18px 18px 14px;
  justify-self: center;
  color: #575757;
  background: #fff;
  border: 1px solid rgba(89, 94, 102, 0.15);
  border-radius: 14px;
  box-shadow: rgba(212, 212, 212, 0.035) 0 0.361312px 0.650362px -0.166667px inset, rgba(212, 212, 212, 0.07) 0 1.37312px 2.47162px -0.333333px inset, rgba(212, 212, 212, 0.224) 0 6px 10.8px -0.5px inset;
  z-index: 1;
  transition: all 0.5s;
}


.viewport-section.in-viewport .feature-card {
  animation: fade 1s forwards;
}

.viewport-section.in-viewport .feature-card:nth-child(2n) {
  animation-delay: 0.08s;
}

.viewport-section.in-viewport .feature-card:nth-child(3n) {
  animation-delay: 0.16s;
}

.viewport-section.in-viewport .feature-card:nth-child(4n) {
  animation-delay: 0.24s;
}

.feature-card__tag {
  position: absolute;
  top: -28px;
  left: 0;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px 50px;
  border-radius: 14px 14px 0 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #6f8d73;
  background: #b8e0ba;
  border: 1px solid rgba(111, 141, 115, 0.16);
  border-bottom: 0;
  transition: opacity 0.2s ease;
}

.feature-card__tag::after {
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 10px;
  content: "";
  background: #fff;
  z-index: 1;
}

.feature-card__title,
.feature-card__text {
  position: relative;
  z-index: 2;
  transition: opacity 0.2s ease;
}

.feature-card__container:hover .feature-card__title,
.feature-card__container:hover .feature-card__text,
.feature-card__container:focus-within .feature-card__title,
.feature-card__container:focus-within .feature-card__text {
  opacity: 0.6;
}

.feature-card:hover .feature-card__title,
.feature-card:hover .feature-card__text,
.feature-card:focus-within .feature-card__title,
.feature-card:focus-within .feature-card__text {
  opacity: 0.6;
}

.feature-card:hover .feature-card__tag,
.feature-card:focus-within .feature-card__tag {
  opacity: 0.6;
}

.feature-card--evaluation .feature-card__tag {
  color: #be9d2c;
  background: #f5e79f;
  border-color: rgba(190, 157, 44, 0.18);
}

.feature-card--redaction .feature-card__tag {
  color: #4b67dc;
  background: #c3d2f2;
  border-color: rgba(75, 103, 220, 0.18);
}

.feature-card--other .feature-card__tag {
  color: #985fb5;
  background: #dfbcf1;
  border-color: rgba(152, 95, 181, 0.2);
}

.feature-card--beta .feature-card__tag {
  color: #5f6368;
  background: #eceff1;
  border-color: rgba(95, 99, 104, 0.22);
}

.feature-card__title {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #262626;
  opacity: 1;
  transform: none;
  animation: none;
}

.feature-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5em;
}

.automation-intro {
  margin: 0 0 3em;
  font-size: 18px;
  line-height: 1.5em;
  white-space: pre-wrap;
  color: var(--theme-primary);
}

.automation-note {
  margin: 0 0 23px;
}

.automation-note-title {
  margin-bottom: 10px;
  color: var(--theme-gray-dark);
}

.automation-note-text {
  margin: 0;
  white-space: pre-wrap;
  color: var(--theme-gray);
}

body.automation-loading [data-automation-live] {
  display: none;
}

body:not(.automation-loading) .automation-skeleton {
  display: none;
}

.automation-skeleton .hero-section__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skeleton-line,
.skeleton-circle,
.skeleton-chip {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
}

.skeleton-line::after,
.skeleton-circle::after,
.skeleton-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.95) 45%, transparent 100%);
  animation: skeleton-shimmer 1.2s infinite;
}

.skeleton-title {
  height: 48px;
  width: 85%;
  border-radius: 10px;
}

.skeleton-title--short {
  width: 62%;
}

.skeleton-text {
  height: 15px;
  width: 100%;
  border-radius: 8px;
}

.skeleton-text--short {
  width: 76%;
}

.skeleton-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.skeleton-card__title {
  height: 26px;
  width: 52%;
  border-radius: 8px;
}

.skeleton-circle {
  width: 48px;
  height: 48px;
  border-radius: 6px;
}

.skeleton-drop-title {
  width: 170px;
  height: 20px;
  border-radius: 8px;
}

.skeleton-drop-subtitle {
  width: 120px;
  height: 15px;
  border-radius: 8px;
}

.skeleton-chip {
  width: 56px;
  height: 20px;
  border-radius: 14px;
}

.skeleton-chip--short {
  width: 44px;
}

.skeleton-button {
  width: 100%;
  height: 40px;
  border-radius: 12px;
}

@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.upload-panel {
  width: min(100%, 430px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  margin: 0 auto;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(89, 94, 102, 0.15);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: rgba(212, 212, 212, 0.035) 0 0.361312px 0.650362px -0.166667px inset, rgba(212, 212, 212, 0.07) 0 1.37312px 2.47162px -0.333333px inset, rgba(212, 212, 212, 0.224) 0 6px 10.8px -0.5px inset;
}

.upload-dropzone {
  padding: 50px 6px;
  background: var(--theme-surface-gray);
  border-radius: 12px;
  margin: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.upload-dropzone--disabled {
  cursor: default;
}

.upload-dropzone--running {
  background: var(--theme-surface-gray);
}

.upload-dropzone--success {
  background: #ecf7ec;
}

.upload-dropzone--error {
  background: #f9ecec;
}

.upload-dropzone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 6px;
  color: #575757;
  background: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.upload-dropzone__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-items: center;
}

.upload-dropzone__title {
  margin: 0;
}

.upload-dropzone__text {
  margin: 0;
  color: var(--theme-gray);
  display: none;
}

.upload-dropzone__formats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}

.upload-dropzone__formats--hidden {
  display: none;
}

.upload-dropzone__format-chip {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 4px 9px;
  border-radius: 14px;
  border: 1px solid rgba(89, 94, 102, 0.15);
  background: transparent;
  color: #575757;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
}

.upload-files {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--upload-file-gap);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  max-height: calc(
    var(--upload-visible-count) * (var(--upload-file-row-height) + var(--upload-file-row-overflow))
    + (var(--upload-visible-count) - 1) * var(--upload-file-gap)
  );
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.upload-files::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.upload-files:empty {
  display: none;
}

.upload-files--hidden {
  display: none;
}

.upload-file {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  column-gap: 12px;
  row-gap: 6px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: var(--upload-file-row-height);
  padding: 6px;
  box-sizing: border-box;
  border: 1px solid rgba(89, 94, 102, 0.15);
  border-radius: 12px;
  background: #fff;
}

.upload-file__type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  border-radius: 6px;
  background: var(--theme-surface-gray);
  color: #575757;
  font-size: 12px;
  line-height: 1;
  flex: 0 0 48px;
}

.upload-file__content {
  display: flex;
  flex-direction: column;
  grid-column: 2;
  min-width: 0;
  max-width: 100%;
  text-align: left;
}

.upload-file__name {
  margin: 0;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.upload-file__meta {
  margin: 0;
  color: var(--theme-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.upload-file__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 3;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  padding: 0;
  border-radius: 6px;
  border: 0;
  background: transparent;
  color: #575757;
  font-size: 12px;
  line-height: 1;
  flex: 0 0 48px;
  cursor: pointer;
  pointer-events: auto;
}

.upload-file__action-icon {
  display: block;
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.upload-file--progress .upload-file__action-icon {
  width: 50%;
  height: 50%;
}

.upload-file--error .upload-file__meta {
  color: #b33d3d;
}

.upload-file--error .upload-file__action-icon {
  filter: grayscale(40%);
}

.upload-file--progress {
  align-items: start;
}

.upload-dropzone__meta {
  display: block;
  margin-top: 8px;
  color: #6f6f6f;
}

.upload-dropzone__title,
.upload-dropzone__meta,
.upload-dropzone__warning {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.upload-dropzone__warning {
  color: #b33d3d;
  margin-top: 0;
  max-height: calc(var(--upload-feedback-line-height) * var(--upload-feedback-visible-lines) * 1em);
  overflow-y: auto;
  overflow-x: hidden;
  line-height: var(--upload-feedback-line-height);
  white-space: pre-line;
  word-break: break-word;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.upload-dropzone__warning:empty {
  margin: 0;
  max-height: 0;
  overflow: hidden;
}

.upload-dropzone__warning:not(:empty) {
  margin-top: 6px;
}

.upload-dropzone__warning::-webkit-scrollbar {
  width: 0;
  height: 0;
}


.upload-dropzone__warning::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(179, 61, 61, 0.35);
}

.upload-progress {
  grid-column: 1 / -1;
  width: 100%;
  height: 6px;
  pointer-events: none;
  margin-top: 0;
  border-radius: 6px;
  background: #ececec;
  overflow: hidden;
}

.upload-progress__fill {
  display: block;
  width: 48%;
  height: 100%;
  border-radius: 6px;
  background: var(--theme-primary);
}

.upload-file-input {
  display: block;
}

.upload-file-input[hidden] {
  display: none;
}

.btn.btn.upload-panel__start {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 12px;
}

.btn.btn.upload-panel__start:disabled {
  color: #fff;
  background: var(--theme-gray);
  border-color: var(--theme-gray);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 1;
}

.btn.btn.upload-panel__start:disabled:hover {
  color: #fff;
  background: var(--theme-gray);
  border-color: var(--theme-gray);
}

.btn.btn.upload-panel__start.upload-panel__start--danger {
  color: #fff;
  background: #b33d3d;
  border-color: #b33d3d;
}

.btn.btn.upload-panel__start.upload-panel__start--danger:hover {
  color: #fff;
  background: #a83333;
  border-color: #a83333;
  box-shadow: 0 0 0 3px rgba(179, 61, 61, 0.25);
}

.btn.btn.upload-panel__start.upload-panel__start--running {
  color: #fff;
  background: var(--theme-gray);
  border-color: var(--theme-gray);
}

.btn.btn.upload-panel__start.upload-panel__start--running:hover {
  color: #fff;
  background: var(--theme-gray);
  border-color: var(--theme-gray);
  box-shadow: 0 0 0 3px rgba(111, 111, 111, 0.25);
}

.btn.btn.upload-panel__start.upload-panel__start--success {
  color: #fff;
  background: #3d7a3d;
  border-color: #3d7a3d;
}

.btn.btn.upload-panel__start.upload-panel__start--success:hover {
  color: #fff;
  background: #336933;
  border-color: #336933;
  box-shadow: 0 0 0 3px rgba(61, 122, 61, 0.25);
}

@media (max-width: 767.98px) {
  .feature-grid {
    gap: 40px 18px;
  }
}

@media (min-width: 1280px) {
  .feature-card__title {
    font-size: 17px;
  }
}

.grid-columns-3 {
  color: #575757;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 18px 20px;
}

@media (min-width: 570px) {
  .grid-columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ticket-section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .ticket-section {
    padding: 128px 0 126px;
  }
}

.ticket-section__heading {
  max-width: 900px;
  margin: 0 auto 66px;
  text-align: center;
}

.feedback-section {
  padding: 60px 0 30px;
  background: url("../images/bg-container.jpg") no-repeat 50% 50%/cover;
}

@media (min-width: 768px) {
  .feedback-section {
    padding: 128px 0 60px;
  }
}

.feedback-section__heading {
  text-align: center;
}

@media (min-width: 768px) {
  .feedback-section__columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }

  .feedback-section__col {
    width: 48%;
  }

  .feedback-section__col:first-child {
    width: 48%;
    margin-bottom: 0;
  }
}

.feedback-section__col:first-child {
  margin-bottom: 30px;
  text-align: center;
}

.feedback-section__footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 0 0;
  color: #575757;
  text-align: center;
}

@media (min-width: 768px) {
  .feedback-section__footer {
    padding: 58px 0 0;
  }
}

.feedback-section__footer p {
  margin: 0;
}

.faq-section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 144px 0 126px;
  }
}

.faq-section__heading {
  text-align: center;
}

@media (min-width: 768px) {
  .faq-section__heading {
    text-align: left;
  }

  .faq-section__columns {
    display: flex;
    justify-content: space-between;
  }

  .faq-section__col {
    width: 47%;
  }

  .faq-section__col:first-child {
    width: 45%;
    margin-bottom: 0;
    padding-top: 10px;
  }
}

.faq-section__visual {
  margin: 0 auto;
  max-width: 200px;
}

@media (min-width: 768px) {
  .faq-section__visual {
    max-width: none;
  }
}

.faq-section__col:first-child {
  margin-bottom: 30px;
  text-align: center;
}

.box-form {
  padding: 15px;
  background: #fff;
  border: 1px solid rgba(89, 94, 102, 0.15);
  border-radius: 12px;
  box-shadow: rgba(212, 212, 212, 0.04) 0 0.361312px 0.650362px -0.166667px inset, rgba(212, 212, 212, 0.07) 0 1.37312px 2.47162px -0.333333px inset, rgba(212, 212, 212, 0.23) 0 6px 10.8px -0.5px inset;
}

@media (min-width: 768px) {
  .box-form {
    padding: 20px;
  }
}

@media (min-width: 992px) {
  .box-form {
    padding: 32px 52px 20px;
  }
}

.box-form textarea {
  display: block;
  width: 100%;
  min-width: 100%;
  min-height: 100px;
  margin-bottom: 20px;
  padding: 12px;
  border: 0;
  border-radius: 10px;
  background: rgba(187, 187, 187, 0.15);
}

.box-form textarea::placeholder {
  color: #999;
}

.box-form .btn {
  display: block;
  width: 100%;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.accordion > li {
  border: 1px solid rgba(89, 94, 102, 0.15);
  border-radius: 12px;
  box-shadow: rgba(212, 212, 212, 0.035) 0 0.361312px 0.650362px -0.166667px inset, rgba(212, 212, 212, 0.07) 0 1.37312px 2.47162px -0.333333px inset, rgba(212, 212, 212, 0.224) 0 6px 10.8px -0.5px inset;
}

.accordion > li + li {
  margin-top: 16px;
}

.accordion .opener {
  position: relative;
  display: block;
  min-height: 60px;
  padding: 19px 20px 19px 52px;
  color: #262626;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
}

.accordion .opener:after {
  position: absolute;
  top: 21px;
  left: 18px;
  width: 16px;
  height: 16px;
  content: "";
  background: url("../images/icon-01.png") no-repeat 50% 50%/contain;
  transform: rotate(0);
  transition: transform 0.5s;
}

.accordion .active .opener:after {
  transform: rotate(45deg);
}

.accordion p {
  margin: 0;
}

.accordion .slide--hold {
  padding: 0 16px 16px;
}

.opener .link--underline,
.slide .link--underline {
  color: inherit;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.opener .link--underline:hover,
.slide .link--underline:hover {
  text-decoration: underline;
}

.rive-viewport {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.rive-viewport.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .rive-viewport {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

#riveCanvas.rive-zoom-160 {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

[id="footer"] {
  padding: 20px 0;
  font-size: 15px;
  line-height: 1.2;
  background: #fff;
}

[id="footer"] .logo {
  position: static;
  transform: none;
}

[id="footer"] a {
  color: #575757;
  opacity: 1;
  transition: opacity 0.3s;
}

[id="footer"] a:hover {
  opacity: 0.7;
}

[id="footer"] a:focus {
  opacity: 1;
}

[id="footer"] a:active {
  opacity: 0.7;
}

.footer-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-holder .primary-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-holder .primary-menu li {
  padding: 10px;
}




.upload-dropzone__icon-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  height: 70%;
}

.upload-dropzone__icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.upload-file__action:hover .upload-file__action-icon {
  opacity: 0.6;
}

.upload-dropzone__icon:hover .upload-dropzone__icon-image {
  opacity: 0.6;
}

.upload-dropzone--running .upload-dropzone__icon:hover .upload-dropzone__icon-image {
  opacity: 1;
}

/* nearly global no-select with explicit UX exceptions */
body,
#wrapper,
#header,
#main,
#footer,
.hero-section,
.columns-section,
.ticket-section,
.feedback-section,
.faq-section,
.feature-grid,
.feature-card,
.upload-panel,
.upload-dropzone,
.upload-files,
.upload-file,
.primary-menu,
.filter-chips,
.btn,
button,
a {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
[contenteditable="true"],
.allow-select {
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
