@import "blog.css";

:root {
  --color-body: #121212;

  --color-purple: #7f177f;
  --color-yellow: #fce97b;
  --color-pink: #ee5dac;
  --color-dark-purple: #e46de6;
  --color-dark-yellow: #aa8731;

  --color-text-heading: #eee;
  --color-text-top: #e8e8e8;
  --color-text-bottom: #a7a7a7;

  --display-font: "SF Pro Rounded", "SF Pro Display", -apple-system, "system-ui",
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  --text-font: "SF Pro Text", -apple-system, "system-ui", "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;

  --grid-item-padding: 32px;
}

body {
  background: var(--color-body);
  font-family: var(--display-font);
}

* {
  margin: 0;
  padding: 0;
  color: #fff;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.header-wrapper {
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(50%);
  backdrop-filter: blur(20px) saturate(180%) brightness(50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.5);
}

header {
  padding: 0 40px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 56px;
}

/* header:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -80px;
  background: linear-gradient(var(--color-body) 25%, transparent);
  pointer-events: none;
} */

header > * {
  display: flex;
  gap: 24px;
  font-weight: 500;
}

.header__left {
  justify-content: flex-start;
  flex: 1;
}

.header__left a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__right {
  justify-content: flex-end;
  flex: 1;
}
.download-header {
  padding-left: 40px;
  background: url(/images/icon.download.svg) no-repeat;
  background-size: 12px;
  background-position: left 20px center;
}

.container {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.top-section {
  display: flex;
  align-items: center;
  height: calc(100% - 360px);
  justify-content: center;
  flex-direction: column;
  min-height: 500px;
  max-height: 800px;
}

.top-section__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  gap: 24px;
}

.main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.screenshots {
  position: relative;
}

.screenshots:before {
  content: "";
  position: absolute;
  inset: 0;
  top: 50%;
  bottom: -50%;
  background: black;
  z-index: -1;
  background: linear-gradient(rgba(0, 0, 0, 0.75), transparent);
}

.screenshots .container {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  gap: 0;
  align-items: flex-end;
  margin-top: 80px;
}

.screenshots__item {
  width: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.screenshots__left {
  /* width: 70%; */
  margin-bottom: 24px;
}

.screenshots__right {
  border-radius: 8px;
  width: 45%;
  position: relative;
  left: -15%;
  filter: drop-shadow(-10px 10px 40px rgba(0, 0, 0, 0.4));
}

.testimonials {
  margin: 100px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.testimonials__container {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.testimonials__single {
  max-width: 35%;
}

.testimonials__single .testimonials__quote {
  height: 100%;
  flex-direction: column;
}

.testimonials__single .testimonials__quote > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonials__multiple {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.testimonial__link {
  opacity: 1;
  color: white;
}

.testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial__avatar--text {
  background: var(--color-purple);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.testimonial__text {
  font-size: 18px;
  opacity: 0.75;
}

.testimonials__quote {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-bottom);
  padding: 24px;
  background: #1c1b1b;
  border-radius: 24px;
  text-align: left;
  display: flex;
  gap: 24px;
  width: 100%;
  position: relative;
}

.testimonial__author {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.circles-divider {
  margin: 0 auto;
  display: block;
}

.highlight {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(150px);
}

.highlight--purple {
  width: 500px;
  height: 500px;
  background: var(--color-purple);
  left: calc(50% - 400px);
  top: -200px;
  opacity: 0.4;
}

.highlight--yellow {
  width: 800px;
  height: 800px;
  background: var(--color-yellow);
  right: calc(50% - 600px);
  top: -400px;
  opacity: 0.1;
}

.app-name {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-top: -12px;
}

.title {
  font-size: 16px;
  font-style: normal;
  font-variation-settings: "wght" 700;
  line-height: normal;
  letter-spacing: 3.2px;
  color: white;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.75);
}

h1,
h2,
h3 {
  font-family: var(--display-font);
  font-weight: 600;
  text-align: center;
  font-size: 48px;
  color: var(--color-text-heading);
  /* background: linear-gradient(
    180deg,
    var(--color-text-top) 0%,
    var(--color-text-bottom) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

h2 {
  font-size: 40px;
}

.h2-small {
  font-size: 32px;
}

h3 {
  font-size: 24px;
  text-align: left;
}

p {
  color: var(--color-text-top);
}

.spacer {
  flex: 1;
}

p.gradient {
  background: linear-gradient(
    180deg,
    var(--color-text-top) 0%,
    var(--color-text-bottom) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtext {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  max-width: 60ch;
  opacity: 0.6;
}

.brand {
  color: var(--color-brand);
}

h1 span {
  display: block;
}

.divider {
  height: 2px;
  background: white;
  opacity: 0.1;
  border-radius: 1px;
}

footer {
  margin-top: 40px;
  background: rgba(0, 0, 0, 0.75);
  padding-top: 10px;
}

footer * {
  text-align: left !important;
  line-height: 1.5;
}

footer p {
  color: rgba(255, 255, 255, 0.5);
}

footer .container {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 180px;
}

.company-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer__sidebar {
  display: flex;
  gap: 24px;
}

.button {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  background: linear-gradient(
    131deg,
    var(--color-dark-purple) 0%,
    var(--color-pink) 48.2%,
    var(--color-dark-yellow) 100%
  );
  box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.5) inset,
    0 0 0 6px rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2), 0px 1px 0px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);

  transition: box-shadow 0.2s ease, transform 0.2s ease;
  transform: translate3d(0, 0, 0);

  margin-top: 16px;
  appearance: none;
  cursor: pointer;
  outline: none;
  border: 0;
}

.button--header {
  border-radius: 999px;
  margin-top: 0;
}

.brew {
  border-radius: 8px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2), 0px 1px 0px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.brew span {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.125s ease;
  transition-property: transform, opacity;
}

.brew-code {
  opacity: 1;
  transform: translateX(0);
}

.brew-copied {
  position: absolute;
  left: 44px;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

.brew--copy-success .brew-code {
  opacity: 0;
  transform: translateX(20px);
}

.brew--copy-success .brew-copied {
  opacity: 1;
  transform: translateX(0px);
}

.copy-brew {
  width: 16px;
  height: 16px;
  margin: 0 0 0 8px;
  cursor: pointer;
  display: inline-block;
  background: url(/images/icon.copy.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.125s ease;
  opacity: 0.6;
}

.copy-brew:hover {
  transform: scale(1.2);
}

.brew:before {
  content: "$";
  opacity: 0.4;
  align-self: flex-start;
}

.button--with-arrow {
  display: block;
  position: relative;
  width: 100%;
  padding-right: 60px;
}

.button--with-arrow:before {
  content: "";
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: url(/images/arrow.right.svg) no-repeat;
  background-position: center right;
}

.button--with-arrow.button--secondary:before {
  opacity: 0.5;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 8px;
}

.lookaway-input {
  appearance: none;
  box-shadow: inset rgba(255, 255, 255, 0.2) 0 0 0 2px;
  border: 0;
  background: rgba(0, 0, 0, 0);
  appearance: none;
  width: 100%;
  position: relative;
  border-radius: 8px;
  padding: 9px 12px;
  line-height: 1.4;
  color: white;
  font-size: 16px;
  font-weight: 400;
  height: 48px;
  transition: all 0.2s ease;
}

.lookaway-input:hover {
  box-shadow: 0 0 0 0 #fff inset, #1de9b6 0 0 0 2px;
}
.lookaway-input:focus {
  background: #fff;
  color: black;
  outline: 0;
  box-shadow: 0 0 0 0 #fff inset, #1de9b6 0 0 0 3px;
}

.button--full {
  width: 100%;
  text-align: center;
}

*[disabled] {
  opacity: 0.5;
}

.button--secondary {
  background: none;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1);
}

.button:after {
  content: "";
  position: absolute;
  border-radius: 8px;
  inset: 0;
  background: white;
  opacity: 0;
  mix-blend-mode: overlay;
  pointer-events: none;

  transition: opacity 0.2s ease;
}

.button--header:after {
  border-radius: 999px;
}

.button:hover,
.button:focus {
  box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.25) inset,
    0 0 0 10px rgba(255, 255, 255, 0.12);
}

.button:hover::after,
.button:focus::after {
  opacity: 0.4;
}

.button--secondary:hover,
.button--secondary:focus {
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12);
}

.button--secondary:hover::after,
.button--secondary:focus::after {
  opacity: 0.2;
}

.button:active {
  box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.25) inset,
    0 0 0 4px rgba(255, 255, 255, 0.12);
  transform: translate3d(0, 2px, 0);
}

.small {
  text-align: center;
  max-width: 60ch;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  opacity: 0.5;
  background: none;
  color: var(--color-text-bottom);
  background-clip: none;
  -webkit-background-clip: none;
  -webkit-text-fill-color: unset;
}

.small a {
  text-decoration: underline;
  color: white;
}

.download-item .small {
  text-align: left;
}

.buttons-group {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.buttons-group > * {
  margin-top: 0;
}

a {
  color: var(--color-text-bottom);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--color-text-top);
}

.feature-grid,
.pricing-grid {
  width: 100%;
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-grid__item,
.pricing-grid__item {
  background: #1c1b1b;
  border-radius: 24px;
  text-align: left;
  position: relative;
  transition: opacity 0.2s ease;
  padding: var(--grid-item-padding);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.feature-grid__item img,
.pricing-grid__item img {
  opacity: 0.5;
}

.feature-grid__item p,
.pricing-grid__item p {
  padding-top: 0;
  line-height: 1.4;
  opacity: 0.6;
  max-width: 60ch;
}

.feature-grid__item img {
  height: 28px;
  object-fit: scale-down;
  object-position: left center;
}

.pricing-grid__item {
  gap: 8px;
  position: relative;
}

.pricing-grid__item--highlighted:before {
  left: -2;
  top: -2;
  bottom: -2;
  right: -2;
  position: absolute;
  content: "";
  background: linear-gradient(
    131deg,
    var(--color-dark-purple) 0%,
    var(--color-pink) 48.2%,
    var(--color-dark-yellow) 100%
  );
  border-radius: 26px;
  z-index: -1;
}

.pricing-grid__item .small {
  text-align: left;
  margin-top: 16px;
}

.pricing-grid__item .price {
  font-weight: bold;
  color: #76b545;
  font-size: 40px;
  opacity: 1;
}

.pricing-grid__item ul {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.pricing-grid__item li {
  font-size: 18px;
  color: #c4bcbc;
  opacity: 0.6;
  padding: 6px 0 6px 32px;
  position: relative;
}

.pricing-grid__item li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(/images/pricing.check.svg) no-repeat;
  opacity: 0.5;
}

.og-price {
  text-decoration: line-through;
}

.price-container {
  position: relative;
}

.price-loader {
  position: absolute;
  top: 4px;
  left: 0;
}

.parity-discount {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  background: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.25s ease;
}

.parity-discount--visible {
  opacity: 0.8;
  visibility: visible;
  max-height: 999px;
  padding: 24px var(--grid-item-padding);
  margin: 16px calc(-1 * var(--grid-item-padding)) 8px;
}

.parity-discount p,
.parity-discount__country-name {
  opacity: 1;
  color: var(--color-text-bottom);
}

.parity-discount span {
  font-weight: bold;
}

.parity-discount__country {
  font-size: 16px;
  margin-bottom: 16px;
}

.parity-discount {
  font-size: 14px;
}

.more-seats {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 24px;
}

.more-seats a {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}

.more-seats a:hover {
  color: rgba(255, 255, 255, 1);
}

.save-dollars {
  color: #76b545;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: 16px;
  right: 16px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 6px 12px;
}

.download-item {
  background: rgba(255, 255, 255, 0.075);
  border-radius: 24px;
  margin-top: 40px;
}

.faq {
  margin: 0 auto;
  padding-top: 60px;
}

.faq h2 {
  margin-bottom: 60px;
}

.question {
  padding: 32px;
  background: #1c1b1b;
  border-radius: 24px;
  text-align: left;
  margin: 24px auto;
  max-width: 800px;
}

.question button {
  background: transparent;
  outline: 0;
  border: 0;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  cursor: pointer;
  font-family: var(--display-font);
  text-align: left;
  width: 100%;
}

.faq-answer {
  font-size: 18px;
  line-height: 1.5;

  opacity: 1;
}

.faq-answer p {
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.5);
}

.faq-answer a {
  color: rgba(255, 255, 255, 0.9);
}

.faq-answer a:hover {
  color: white;
}

.question button[aria-expanded="true"] + .faq-answer {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.question .faq-answer {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.working {
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.working__flow {
  margin: 64px auto;
  display: flex;
  padding: 32px;
  gap: 24px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='48' ry='48' stroke='%23FFFFFF27' stroke-width='4' stroke-dasharray='6%2c8' stroke-dashoffset='0' stroke-linecap=''/%3e%3c/svg%3e");
  border-radius: 48px;
}

.working__flow__item {
  flex: 1;
  padding: 0 40px 40px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
  text-align: center;
  margin-top: 140px;
}

.working__flow__item p {
  opacity: 0.5;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.working__flow__arrows {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 8px;
}

.working__flow__image {
  width: 100%;
  max-width: 340px;
  margin-top: -160px;
}

.arrow-container {
  height: 40px;
  width: 40px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-container img {
  opacity: 0.5;
}

.pricing {
  padding: 40px 0 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.75), transparent);
  background-size: auto 400px;
  background-repeat: no-repeat;
}

.pricing--no-bg {
  background: none;
}

.pricing .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

/** Screenshots section */
.screenshot-scroller {
  padding: 80px 0 0;
  background: url(https://i.magecdn.com/1a402f/25d01e_wallpaper?sz=3068,3068&f=webp,90);
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
}

.screenshot-scroller h2 {
  background: none;
  background-clip: none;
  -webkit-background-clip: none;
  -webkit-text-fill-color: white;
}

.screenshots-container {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  display: flex;
  padding: 80px 50%;
  gap: 60px;
  scroll-snap-stop: always;
}

.screenshots-container img {
  width: 700px;
  max-width: 80vw;
  scroll-snap-align: center;
  display: inline-block;
  object-fit: contain;
  align-self: flex-start;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.company-logos {
  text-align: center;
  margin-top: 100px;
}

.company-logos p {
  opacity: 0.25;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.company-logos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
  opacity: 0.5;
}

.company-logos__grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 16px 0;
}

.company-logos__grid img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.highlight-message {
  position: relative;
  margin: 0 auto 40px;
  padding: 12px 16px 12px 12px;
  background: linear-gradient(0deg, #000, #272727);
  color: white;
  border-radius: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.highlight-message:before,
.highlight-message:after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(
    45deg,
    var(--color-dark-purple),
    var(--color-pink),
    var(--color-dark-yellow),
    var(--color-dark-purple),
    var(--color-pink),
    var(--color-dark-yellow),
    var(--color-dark-purple),
    var(--color-pink),
    var(--color-dark-yellow),
    var(--color-dark-purple)
  );
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 20s linear infinite;
  border-radius: 16px;
}

.highlight-message__tag {
  background: linear-gradient(
    131deg,
    var(--color-dark-purple) 0%,
    var(--color-pink) 48.2%,
    var(--color-dark-yellow) 100%
  );
  padding: 4px 8px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(0, 0, 0, 0.2);
  display: inline-block;
}

.highlight-message__text {
  display: inline-block;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.highlight-message:after {
  filter: blur(50px);
  opacity: 0.5;
}

/** Inner post */
.post {
  p,
  ul {
    margin: 20px 0;
    line-height: 1.5;
  }

  ul {
    padding-left: 20px;
  }

  li {
    margin: 10px 0;
  }

  h3 {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  :root {
    --grid-item-padding: 24px;
  }

  h1 {
    font-size: 24px;
  }

  .title {
    font-size: 14px;
  }

  .top-section {
    padding: 0;
  }

  .subtext {
    font-size: 14px;
    line-height: 22px;
  }

  .top-section .logo {
    width: 80px;
    border-radius: 25px;
  }

  .container {
    padding: 24px;
  }

  header .container,
  .container {
    padding: 24px;
  }

  .top-section {
    min-height: unset;
    max-height: unset;
    height: unset;
    padding: 40px 0;
  }

  .buttons-group {
    display: block;
  }

  .buttons-group .button {
    display: block;
    text-align: center;
  }

  .buttons-group > * {
    margin: 12px 0;
  }

  .buttons-group .brew {
    justify-content: space-between;
  }

  .main-content {
    align-items: stretch;
  }

  .top-section .small {
    text-align: center;
  }

  .feature-grid {
    padding-top: 40px;
  }

  .question {
    padding: 24px;
    border-radius: 16px;
  }

  h3 {
    font-size: 18px;
  }
  .faq button {
    font-size: 18px;
  }
  .feature-grid__column {
    gap: 24px;
  }

  .faq {
    padding-top: 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .question {
    margin: 16px 0;
  }

  .screenshots .container {
    margin-top: 20px;
    display: block;
  }

  .screenshots__item {
    width: 100%;
    left: 0;
    margin-bottom: 20px;
  }

  .screenshots__right {
    display: none;
  }

  .testimonials {
    margin: 20px 0 40px;
  }

  .circles-divider {
    transform: scale(0.5);
  }

  .testimonial__text {
    font-size: 14px;
  }

  .testimonial__author {
    font-size: 12px;
  }

  .testimonial__avatar {
    width: 40px;
    height: 40px;
  }

  .testimonials__quote {
    gap: 16px;
    flex-direction: column;
  }

  .screenshot-scroller {
    padding: 40px 0 0;
  }

  .screenshots-container {
    padding: 40px 50%;
  }

  .screenshots-container img {
    width: 80vw;
  }

  .working {
    margin: 40px 0;
    gap: 16px;
  }

  .company-logos {
    margin-top: 40px;
  }

  h2,
  .h2-small {
    font-size: 22px;
  }

  .working__flow {
    gap: 8px;
    margin: 20px auto 40px;
    flex-direction: column;
    padding: 16px;
    border-radius: 36px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='36' ry='36' stroke='%23FFFFFF27' stroke-width='4' stroke-dasharray='6%2c8' stroke-dashoffset='0' stroke-linecap=''/%3e%3c/svg%3e");
  }

  .working__flow__arrows {
    display: flex;
    flex-direction: row-reverse;
    align-self: center;
    gap: 8px;
  }

  .arrow-container {
    rotate: -90deg;
  }

  .working__flow__item {
    padding: 24px;
  }

  .working__flow__item p {
    font-size: 14px;
  }

  .feature-grid__item,
  .pricing-grid__item {
    gap: 16px;
  }

  .feature-grid__item p {
    font-size: 14px;
  }

  .pricing {
    padding: 40px 0 20px;
  }

  .pricing-grid__item {
    gap: 4px;
  }
  .pricing-grid__item .price {
    font-size: 32px;
  }

  .more-seats {
    font-size: 14px;
    text-align: center;
  }

  .desktop-only {
    display: none;
  }

  footer .container {
    flex-direction: column;
  }

  .footer__sidebar {
    flex-direction: column;
  }

  .footer__links {
    width: 100%;
  }

  .testimonials__container {
    flex-direction: column;
  }

  .testimonials__single {
    width: 100%;
    max-width: 100%;
  }

  .highlight-message {
    text-align: center;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    margin-bottom: 24px;
  }
}
