@charset "UTF-8";
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 0.9rem;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: #000;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #ff008d;
  transition: 0.2s;
}
p {
  margin: 0 0 0.7rem 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 3.3vw, 4rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.6rem);
  margin-bottom: 3rem;
  margin-top: 3rem;
}

h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
}

h4 {
  font-size: 1rem;
}

@media (max-width: 480px) {
  h2 {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}
.yt-lite {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.yt-lite .yt-thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.yt-lite .yt-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}
.yt-lite .yt-play::before {
  content: "";
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}
.yt-lite .yt-play::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateX(2px);
}
.yt-lite:hover .yt-play {
  background: none;
}
.yt-lite:hover .yt-play::before {
  background: #ff008d;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}

.btn-main {
  background: #ff008d;
  color: #fff;
}
.btn-main:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  color: #000;
  border-color: #000;
}
.btn-outline:hover {
  background: #000;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #000;
}
.btn-ghost:hover {
  color: #ff008d;
}

.btn-white {
  background: #fff;
  color: #ff008d;
  border-color: #fff;
}
.btn-white:hover {
  background: #f9fafb;
  border-color: #f9fafb;
  color: #ff008d;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background: #f1f5ff;
  color: #000;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1rem;
}
.badge:hover {
  color: #000;
}

.icon-pink {
  display: block;
  margin: 0 auto 1rem;
  width: 35px;
}
@media (max-width: 768px) {
  .icon-pink {
    width: 25px;
  }
}

blockquote {
  margin: 0;
  font-style: normal;
}

strong {
  font-weight: 600;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.3;
}
.author .author__img {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.author .author__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  white-space: nowrap;
}
.author .author__name {
  display: block;
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
}
.author .author__title {
  color: #667085;
}

.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #d0d5dd;
}

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

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}
.logo img {
  height: 1.75rem;
  width: auto;
  vertical-align: middle;
}
.logo .logo-text {
  font-size: 1rem;
  font-weight: 300;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  text-transform: uppercase;
  color: #ff008d !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover {
  color: #ff008d;
}

.dd {
  position: relative;
}
.dd > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.dd > a .dd-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.dd:hover .dd-menu {
  opacity: 1;
  visibility: visible;
}
.dd:hover .dd-arrow {
  transform: rotate(180deg);
}

.dd-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  padding: 0.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: 0.1s;
}
.dd-menu a {
  display: block;
  padding: 0.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
}
.dd-menu a .icon {
  width: 20px;
  height: 20px;
}
.dd-menu a .icon img {
  margin-top: 0.2rem;
}
.dd-menu a .detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
}
.dd-menu a .desc {
  font-size: 0.8rem;
  color: #667085;
}
.dd-menu a.active {
  border-color: #d0d5dd;
  opacity: 1;
}
.dd-menu a.active .name {
  font-weight: 600;
}
.dd-menu a:hover {
  background: #f1f5ff;
  color: #ff008d;
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid #d0d5dd;
  background: #fff;
  border-radius: 999px;
}

.lang-switch .lang-link {
  display: inline-block;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: #344054;
  border: 1px solid transparent;
  transition: 0.2s;
}

.lang-switch .lang-link:hover {
  color: #ff008d;
  border-color: #e4e7ec;
}

.lang-switch .lang-link.active {
  background: #f2f4f7;
  color: #000;
  border-color: #e4e7ec;
}

.menu-btn {
  display: none;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .nav .logo {
    margin-top: 0.7rem;
  }
  .nav-left {
    flex: 1;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .nav-left .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 1rem;
    margin-top: 1rem;
    list-style: none;
  }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .nav.is-open .nav-links li {
    margin: 0;
  }
  .nav.is-open .nav-links > li > a {
    display: block;
    padding: 0 0 0.75rem 0;
    border-bottom: 1px solid #f2f4f7;
    font-weight: 600;
    font-size: 1.1rem;
  }
  .nav.is-open .nav-links .dd-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    margin: 0;
    padding: 0.5rem 0 0 0;
    min-width: 0;
    width: 100%;
  }
  .nav.is-open .nav-links > li.dd > a {
    border-bottom: none;
  }
  .nav.is-open .nav-links > li.dd > a svg {
    display: none;
  }
  .nav-actions {
    display: none;
    width: 100%;
    order: 3;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e4e7ec;
    flex-basis: 100%;
  }
  .nav.is-open .nav-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .menu-btn {
    display: block;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border: none;
    padding: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23101828' stroke-width='2'%3E%3Cpath d='M3 12h18M3 6h18M3 18h18'/%3E%3C/svg%3E") center no-repeat;
    cursor: pointer;
    flex-shrink: 0;
  }
}
.testi-cards {
  text-align: center;
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.testi-cards .testi-card {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  width: 100%;
  text-align: left;
  background: #f2f4f7;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.testi-cards .testi-card blockquote {
  margin: 0 0 1rem;
}
.testi-cards .testi-card .testi-video {
  padding-top: 56.25%;
  position: relative;
  margin-bottom: 1rem;
}
.testi-cards .testi-card .testi-video iframe,
.testi-cards .testi-card .testi-video .yt-lite {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.testi-cards .testi-card .author {
  margin-top: 1.5rem;
}
.testi-cards .testi-card.text blockquote {
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
}
.testi-cards .testi-card.image {
  padding: 0;
  line-height: 0;
  border: 2px solid #f1f5ff;
}
.testi-cards .testi-card.image img {
  border-radius: 8px;
}
.testi-cards .testi-card p:last-child {
  margin-bottom: 0;
  display: inline;
}
.testi-cards .testi-card p:first-child {
  display: inline;
}
.testi-cards .testi-card p:nth-child(2) {
  margin-top: 0.7em;
}
.testi-cards .testi-card p:only-child {
  margin: 0;
}
.testi-cards.testi-cards-centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}
.testi-cards.testi-cards-centered .testi-card {
  margin-left: 0;
  margin-right: 0;
  flex: 1 1 320px;
  max-width: calc((100% - 4rem) / 3);
  min-width: 280px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .testi-cards {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 768px) {
  .testi-cards {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .testi-cards .testi-card {
    margin-bottom: 1rem;
    padding: 1.25rem;
  }
}

.sect {
  padding: 8rem 1.5rem;
  text-align: center;
}
.sect .sect-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.sect .sect-inner > h2:first-child {
  margin-top: 0;
}
.sect .sect-desc {
  text-align: center;
  margin: -2rem auto 2rem auto;
  max-width: 800px;
  font-size: 1.2rem;
}
@media (max-width: 900px) {
  .sect {
    padding: 5rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .sect {
    padding: 3rem 1rem;
  }
}

.sect-hero {
  width: 100%;
  padding: 8rem 1.5rem 25rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.sect-hero > .sect-inner {
  position: relative;
  z-index: 3 !important;
}
.sect-hero .background {
  left: 0;
  right: 0;
  height: 50vh;
  bottom: 0;
  position: absolute;
  z-index: 2;
}
.sect-hero .background img {
  opacity: 0.4;
  width: 100%;
  height: 100%;
}
.sect-hero h1 {
  max-width: 780px;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 1200px) {
  .sect-hero h1 {
    max-width: 70vw;
  }
}
.sect-hero .hero-desc {
  font-size: 1.25rem;
  margin: 0 0 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.sect-hero .hero-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.sect-hero .stat {
  text-align: center;
}
.sect-hero .stat-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #12b76a;
}
.sect-hero .stat-label {
  display: inline;
}
.sect-hero .stat-img img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}
.sect-hero .stat-img .stat-label {
  display: block;
}
.sect-hero .hero-btns {
  margin-bottom: 4rem;
}
.sect-hero .hero-pricing {
  margin-bottom: 4.5rem;
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.sect-hero .hero-pricing #pricing-hero {
  margin-bottom: 0.7rem;
}
.sect-hero .hero-pricing #pricing-hero-sub {
  margin-bottom: 0.7rem;
}
.sect-hero .hero-pricing #pricing-hero-sub .oupon_code {
  margin-top: 0 !important;
  padding: 5px;
}
.sect-hero .hero-pricing #pricing-hero-sub .oupon_code img {
  width: 40px !important;
  height: 40px !important;
}
.sect-hero .hero-pricing #pricing-hero-sub .oupon_code .oupon_code-together {
  position: relative;
  top: 5px;
  left: 10px;
}
.sect-hero .hero-pricing #individualvideo {
  margin-bottom: 0.5rem;
}
.sect-hero .hero-pricing #individualvideo iframe {
  width: 100%;
  height: 100%;
}
.sect-hero .hero-faces {
  margin-top: 8rem;
}
.sect-hero .hero-faces__label {
  margin: 0 0 2rem 0;
}
.sect-hero .hero-faces__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
}
.sect-hero .hero-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 130px;
}
.sect-hero .hero-face img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0.5rem;
}
.sect-hero .hero-face__name {
  text-align: center;
}
.sect-hero .hero-face__title {
  text-align: center;
  color: #667085;
}
@media (max-width: 900px) {
  .sect-hero {
    padding: 5rem 1.5rem 16rem 1.5rem;
  }
  .sect-hero .hero-btns {
    margin-bottom: 2rem;
  }
  .sect-hero .hero-faces {
    margin-bottom: 3rem;
  }
  .sect-hero .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .sect-hero .stat-img img {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .sect-hero h1 {
    max-width: 100%;
  }
  .sect-hero .hero-stats {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "img img" "left right";
    gap: 1.5rem;
    align-items: start;
  }
  .sect-hero .hero-stats .stat-img {
    grid-area: img;
    justify-self: stretch;
  }
  .sect-hero .hero-stats > .stat:nth-child(1) {
    grid-area: left;
  }
  .sect-hero .hero-stats > .stat:nth-child(3) {
    grid-area: right;
  }
}

.hero-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

body.page-corporate .stat-img img {
  max-width: 110px;
  width: 100%;
}

body.page-creator .hero-btns {
  margin-bottom: 0.5rem !important;
}

.sect-screens {
  position: relative;
  z-index: 3;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -17rem;
}
.sect-screens .sect-inner {
  max-width: 1000px;
}
@media (max-width: 900px) {
  .sect-screens {
    margin-top: -12rem;
  }
}
@media (max-width: 768px) {
  .sect-screens {
    margin-top: -10rem;
    padding: 0 1rem 3rem;
  }
}
@media (max-width: 480px) {
  .sect-screens {
    margin-top: -8rem;
  }
}

.sect-cards {
  padding: 0;
  background: #fff;
}
.sect-cards img {
  width: 100%;
  display: block;
}

.hero-slider {
  position: relative;
  margin: 0 auto;
}

.hero-slider__viewport {
  overflow: hidden;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.hero-slider__track {
  display: grid;
}

.hero-slider__slide {
  grid-area: 1/1;
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
}
.hero-slider__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide {
    transition: none;
  }
}
.hero-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.2s;
  border: none;
  background: transparent;
  border-radius: 50%;
}
.hero-slider__btn svg {
  width: 40px;
  height: 40px;
}
.hero-slider__btn:hover {
  background: #f2f4f7;
  border-color: #d0d5dd;
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.1);
}
.hero-slider__btn:focus-visible {
  outline: 3px solid rgba(255, 0, 141, 0.2);
  outline-offset: 2px;
}

.hero-slider__btn--prev {
  left: 12px;
}

.hero-slider__btn--next {
  right: 12px;
}

@media (max-width: 768px) {
  .hero-slider__btn {
    width: 40px;
    height: 40px;
  }
}
.sect-loved {
  background: #fff;
}
.sect-loved h2 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.sect-loved .user-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin: 0 auto;
}
.sect-loved .user-cards .tc {
  flex: 1 1 350px;
  max-width: 350px;
  min-width: 360px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e4e7ec;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}
.sect-loved .user-cards .tc img:first-of-type {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .sect-loved .user-cards {
    justify-content: center;
  }
  .sect-loved .user-cards .tc {
    flex-basis: calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
  }
}
@media (max-width: 900px) {
  .sect-loved .user-cards {
    max-width: 700px;
  }
  .sect-loved .user-cards .tc {
    flex-basis: calc((100% - 2rem) / 2);
    max-width: calc((100% - 2rem) / 2);
  }
}
@media (max-width: 600px) {
  .sect-loved .user-cards {
    max-width: 100%;
    gap: 1rem;
  }
  .sect-loved .user-cards .tc {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.sect-loved .tc-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
  padding-right: 15px;
  border-right: 1px solid #e4e7ec;
  white-space: nowrap;
  line-height: 1.3;
}
.sect-loved .tc-info strong {
  font-size: 1.1rem;
  color: #000;
}
.sect-loved .tc-info span {
  color: #667085;
}
.sect-loved .tc-logo {
  max-height: 30px;
  max-width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .sect-loved .tc {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  .sect-loved .tc-info {
    white-space: normal;
    min-width: 0;
    padding-right: 0.75rem;
    border-right: none;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    margin-bottom: 0.25rem;
    width: 100%;
  }
  .sect-loved .tc-logo {
    margin-left: 0;
    margin-right: auto;
  }
}

.sect-problems {
  background: linear-gradient(to bottom, transparent 0%, #f2f4f7 50%, #f2f4f7 100%);
  padding-bottom: 2.2rem;
  padding-top: 2rem;
}
.sect-problems .problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  text-align: left;
}
.sect-problems .problem-cards.cards-4-cols {
  grid-template-columns: repeat(4, 1fr);
}
.sect-problems .pc {
  background: #fff;
  border-radius: 8px;
  padding: 2.5rem 2.2rem 3.2rem 2.2rem;
  position: relative;
}
.sect-problems .pc-emoji {
  font-size: 1.2rem;
  display: block;
  margin-top: 0.2rem;
}
.sect-problems .pc-header {
  display: block;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  margin-top: -1rem;
  align-items: center;
  border-bottom: 1px solid #e4e7ec;
  padding-bottom: 1.4rem;
}
.sect-problems .pc-tag {
  background: #ffdde3;
  color: rgb(255, 34, 34);
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  top: 1.15rem;
  right: 1.15rem;
  z-index: 2;
  text-transform: uppercase;
  transition: box-shadow 0.2s;
}
.sect-problems .pc h3 {
  margin: 0 0 1rem 0;
  display: block;
}
.sect-problems .pc blockquote {
  margin: 0 0 1.5rem 0;
  text-transform: none;
  /* color: $gray500; */
}
.sect-problems .pc-author {
  margin-bottom: 1rem;
}
.sect-problems .pc-stat {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff008d;
}
.sect-problems .pc-num {
  display: inline-block;
  margin-right: 0.25rem;
}
.sect-problems .author {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .sect-problems .problem-cards {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .sect-problems .pc {
    padding: 1.75rem 1.5rem;
    border: 1px solid #e4e7ec;
  }
  .sect-problems .pc h3 {
    min-height: auto;
    margin-bottom: 3rem;
  }
  .sect-problems .pc .pc-header {
    padding-bottom: 0.6rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .sect-problems .problem-cards {
    margin-top: 1.5rem;
  }
  .sect-problems .pc {
    padding: 1.5rem 1rem;
  }
  .sect-problems .pc h3 {
    min-height: 0 !important;
    margin-bottom: 2.5rem;
  }
}

body.page-pro .problem-cards .pc h3, body.page-creator .problem-cards .pc h3 {
  margin-bottom: 2rem;
  min-height: 100px;
}

.sect-scale {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.sect-scale .background {
  left: 0;
  right: 0;
  height: 100vh;
  bottom: 0;
  position: absolute;
  z-index: 2;
  opacity: 0.5;
  background-image: url("/images/hero/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sect-scale .sect-inner {
  position: relative;
  z-index: 3;
}
.sect-scale .video-container {
  max-width: 800px;
  margin: 0 auto;
}
.sect-scale .video-wrap {
  position: relative;
  padding-top: 56.25%;
  margin: 4rem auto 4rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.sect-scale .video-wrap iframe,
.sect-scale .video-wrap .yt-lite {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sect-scale .video-wrap .yt-lite {
  border-radius: 12px;
}
.sect-scale .benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem auto;
}
.sect-scale .bc {
  background: #fff;
  border-radius: 8px;
  padding: 2.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sect-scale .bc-emoji {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 1.5rem;
  position: relative;
}
.sect-scale .bc-emoji:after {
  content: "";
  display: block;
  right: 0;
  height: 1px;
  border-top: 1px solid #e4e7ec;
  position: absolute;
  top: 0.5rem;
  left: 3rem;
}
.sect-scale .bc h3 {
  margin-bottom: 1rem;
}
.sect-scale .bc p {
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
}
.sect-scale .bc p:last-of-type {
  margin-bottom: 3rem !important;
}
.sect-scale .bc-stat {
  border-top: 1px solid #e4e7ec;
  padding-top: 1.7rem;
  margin-top: auto;
  color: #667085;
}
.sect-scale .bc-stat .number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #12b76a;
  display: block;
}
@media (max-width: 900px) {
  .sect-scale .video-wrap {
    margin: 2.5rem auto;
  }
  .sect-scale .benefit-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 1.5rem auto;
  }
  .sect-scale .bc {
    padding: 1.75rem;
  }
  .sect-scale .stat-img img {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .sect-scale .video-wrap {
    margin: 1.5rem auto;
    border-radius: 8px;
  }
}

.sect-cta-box {
  text-align: center;
  padding-top: 0;
  padding-bottom: 2rem;
}
.sect-cta-box .sect-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 8rem 1.5rem;
}
.sect-cta-box h3 {
  margin: 0 auto 1.5rem auto;
  max-width: 500px;
}
.sect-cta-box .cta-icon {
  width: 30px;
  margin-bottom: 2rem;
}
.sect-cta-box .btn-outline {
  color: #fff;
  border-color: #fff;
}
.sect-cta-box .btn-outline:hover {
  background: #fff;
  color: #000;
}
@media (max-width: 900px) {
  .sect-cta-box .sect-inner {
    padding: 5rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .sect-cta-box .sect-inner {
    padding: 3rem 1rem;
  }
  .sect-cta-box h3 {
    font-size: 1.25rem;
  }
}
.sect-who .tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 0 auto 2rem auto;
  flex-wrap: wrap;
  background: #f2f4f7;
  border-radius: 8px;
  padding: 0.5rem;
  display: inline-block;
}
.sect-who .tab {
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  cursor: pointer;
  transition: 0.2s;
  font-size: 1rem;
  display: inline-block;
  border: 1px solid transparent;
  font-weight: 600;
  color: #667085;
}
.sect-who .tab.active {
  background: #fff;
  color: #000;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.14);
}
.sect-who .tab:hover {
  color: #ff008d;
}
.sect-who .testi-header {
  margin: 0 auto 2rem auto;
  max-width: 600px;
}
.sect-who .testi-header p {
  margin-top: 0;
  text-align: center;
  font-size: 1.25rem;
}
.sect-who .tab-pane {
  display: block;
}
@media (max-width: 768px) {
  .sect-who .tabs {
    padding: 0.35rem;
    gap: 0.35rem;
  }
  .sect-who .tab {
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
  }
  .sect-who .testi-header p {
    font-size: 1.1rem;
  }
}

.sect-features {
  background: #f1f5ff;
}
.sect-features .feat-table {
  margin: 2rem auto 0 auto;
  max-width: 1000px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}
.sect-features .feat-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  gap: 1.5rem;
  padding: 1.5rem 1.5rem;
  align-items: start;
  border-bottom: 1px solid #d0d5dd;
}
.sect-features .feat-row:first-child {
  font-weight: 600;
}
.sect-features .feat-row:last-child {
  border-bottom: none;
}
.sect-features .feat-row:nth-child(even):not(.feat-head) {
  background: #f9fafb;
}
.sect-features .feat-row > *:first-child {
  font-weight: 600;
}
.sect-features .feat-head {
  font-weight: 600;
  background: #e4e7ec;
  border-bottom: 2px solid #d0d5dd;
}
.sect-features .ok {
  color: #12b76a;
  font-size: 0.95rem;
}
.sect-features .no {
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .sect-features .feat-row {
    grid-template-columns: 1fr 1fr;
    padding: 0.75rem 0.75rem 1.5rem 0.75rem;
  }
  .sect-features .feat-row span:first-child {
    grid-column: 1/-1;
    margin-bottom: -1rem;
    padding-top: 1rem;
  }
  .sect-features .feat-head span:first-child {
    display: none;
  }
}

.sect-reviews {
  padding-bottom: 0;
}
.sect-reviews .rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.sect-reviews .rev {
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
}
.sect-reviews .rev .stars {
  color: #eab308;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.sect-reviews .rev blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  font-size: 0.95rem;
}
.sect-reviews .rev-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sect-reviews .rev-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sect-reviews .rev-author strong {
  display: block;
  font-size: 0.9rem;
}
.sect-reviews .rev-author span {
  font-size: 0.85rem;
  color: #667085;
}

.sect-story {
  background: #fff;
  text-align: center;
}
.sect-story .founders {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.sect-story .story-content {
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: left;
}
.sect-story .story-content p {
  margin: 0 0 1rem;
}
.sect-story .story-content img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .sect-story .founders {
    gap: 1.5rem;
    margin: 1.5rem 0;
  }
  .sect-story .story-content {
    margin-top: 1.5rem;
  }
}

.sect-numbers {
  text-align: center;
  position: relative;
  z-index: 3;
}
.sect-numbers .numbers-cards {
  display: flex;
  gap: 1.5rem;
  margin: 2rem auto;
  flex-wrap: wrap;
  justify-content: center;
}
.sect-numbers .numbers-cards .nc {
  flex: 1;
  min-width: 200px;
}
.sect-numbers .numbers-cards .number {
  font-size: 1.3rem;
  font-weight: 600;
  color: #12b76a;
  display: block;
}

body.page-pro .sect-numbers {
  padding-top: 0;
  margin-top: -2rem;
  padding-bottom: 2rem;
}

body.page-creator .sect-numbers {
  margin-bottom: -2rem;
  padding-bottom: 0;
}

.sect-demovideo {
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -20rem;
  position: relative;
  z-index: 3;
}
.sect-demovideo .video-container {
  max-width: 800px;
  margin: 0 auto;
}
.sect-demovideo .video-wrap {
  position: relative;
  padding-top: 56.25%;
  margin: 4rem auto 4rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sect-solutioncards {
  position: relative;
  z-index: 2;
}
body.page-pro .sect-solutioncards {
  padding-top: 0;
}

.solutioncards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.solutioncard {
  border-radius: 14px;
  padding: 3rem;
  background: #f1f5ff;
  text-align: left;
}
.solutioncard:nth-child(even) {
  background: #f1f5ff;
}
@media (min-width: 768px) {
  .solutioncard:nth-child(even) {
    position: relative;
    top: 7rem;
  }
}
.solutioncard .solutioncard-emoji {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.solutioncard h2 {
  margin: 0 0 1rem 0;
  line-height: 1.1;
}
.solutioncard p {
  margin: 0;
}

@media (max-width: 768px) {
  .solutioncards {
    grid-template-columns: 1fr;
  }
}
.sect-solutiontabs h1 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.stabs {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  align-items: stretch;
}
.stabs__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.stabs__panel {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f2f4f7;
  min-height: 360px;
}
.stabs__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
  background: #f2f4f7;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #f2f4f7;
}
.stabs__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border-left: 4px solid #000;
  border-top: 4px solid #000;
  position: relative;
  left: 30px;
  top: 30px;
}
.stabs__img.is-active {
  opacity: 1;
  pointer-events: auto;
}

.stab {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 2px solid #e4e7ec;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  font-size: 1rem;
  line-height: 1.5;
}
.stab:hover:not(.is-active) {
  border-color: #d0d5dd;
}
.stab:hover:not(.is-active) .stab__num {
  background: #d0d5dd;
}
.stab.is-active {
  border: 2px solid #ff008d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.stab.is-active .stab__desc {
  color: #000 !important;
}
.stab__num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #344054;
  margin-top: 0.1rem;
  transition: background 180ms ease, color 180ms ease;
}
.is-active .stab__num {
  background: #ff008d;
  color: #fff;
}
.stab__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: #667085;
}
.stab__title {
  font-weight: 600;
  font-size: 1.3rem;
  color: #000;
}
.stab__desc {
  color: #667085;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .stab {
    padding: 0.9rem 1rem;
  }
}

.solution-tabs-testimonials {
  display: flex;
  align-items: left;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: left;
  text-align: left;
}
.solution-tabs-testimonials img {
  height: 36px;
  width: auto;
  border-radius: 99px;
}
.solution-tabs-testimonials p {
  color: #667085;
  margin: 0;
  max-width: 280px;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stabs {
    grid-template-columns: 1fr;
  }
  .stabs__panel {
    min-height: 240px;
  }
}
.sect-noprompting {
  text-align: center;
  padding: 0;
}
.sect-noprompting > .sect-inner {
  border: 3px dotted #e4e7ec;
  border-radius: 8px;
  padding: 8rem 2rem;
}
.sect-noprompting h2 {
  margin-bottom: 0;
}
.sect-noprompting p {
  margin-bottom: 2rem;
}
.sect-noprompting img {
  margin-bottom: 2rem;
}

.sect-standout {
  position: relative;
}
.sect-standout .standout-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.sect-standout .background {
  background: url("/images/misc/icon-lines.svg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 180% 180%;
  position: absolute;
  opacity: 0.1;
  top: -40vh;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.sect-standout .background::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
  z-index: 2;
}
.sect-standout h2 {
  margin: 2rem auto 2rem auto;
  max-width: 500px;
}
.sect-standout .standout-desc {
  max-width: 400px;
  margin: 0 auto 4rem auto;
}

.sect-getstarted {
  position: relative;
}
.sect-getstarted .background {
  left: 0;
  right: 0;
  height: 80vh;
  bottom: 0;
  position: absolute;
  z-index: 2;
  opacity: 0.3;
  background-image: url(/images/hero/hero-bg.jpg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.sect-getstarted .sect-inner {
  position: relative;
  z-index: 3;
}

.gs-card {
  border: 3px solid #ff008d;
  border-radius: 16px;
  width: 100%;
  max-width: 540px;
  overflow: hidden;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.gs-card__header {
  text-align: center;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid #e4e7ec;
}
.gs-card__header h2 {
  margin: 0 0 0.25rem;
}
.gs-card__guarantee {
  color: #667085;
  margin: 0;
}
.gs-card__body {
  padding: 1.75rem 2rem 2rem;
  text-align: left;
}
.gs-card__includes-label {
  font-weight: 700;
  margin: 0 0 0.875rem;
  text-align: left;
}
.gs-card__pricing {
  margin: 1.5rem 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.gs-card__pricing s, .gs-card__pricing del {
  color: #667085;
  font-weight: 400;
  font-size: 1rem;
  margin-right: 0.25rem;
}
.gs-card__cta {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.gs-card .oupon_code {
  margin-bottom: 1rem;
}
.gs-card .oupon_code img {
  width: 50px !important;
  height: 50px !important;
}
.gs-card__security {
  font-size: 0.8rem;
  color: #667085;
  line-height: 1.5;
  margin: 2rem 0 0 0;
  text-align: left;
}

.gs-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.gs-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.gs-checklist li::before {
  content: "✓";
  color: #ff008d;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

@media (max-width: 600px) {
  .gs-card {
    border-radius: 12px;
  }
  .gs-card__header {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .gs-card__header h2 {
    font-size: 1.75rem;
  }
  .gs-card__body {
    padding: 1.25rem;
  }
}
.sect-text-middle {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.sect-text-middle.backgroundcolor {
  background: #f1f5ff;
  padding: 2rem;
}

.sect-text-left {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

footer {
  margin-top: 6rem;
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid #e4e7ec;
}
footer .ft-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .ft .logo img {
  height: 32px;
}
footer .ft-right {
  flex: 1;
  max-width: 950px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
footer .ft-col {
  text-align: left;
  padding-right: 2rem;
}
footer .ft-col:last-child {
  border-right: none;
  padding-right: 0;
}
footer .ft-col .newsletter-signup {
  background: #f9fafb;
  border-radius: 8px;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
footer .ft-col .newsletter-signup h4 {
  font-weight: 400;
}
footer .ft-col .newsletter-signup > *:last-child {
  margin-bottom: 0;
}
footer .ft-col .social-links a {
  color: #667085;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}
footer .ft-col .social-links a:hover {
  color: #ff008d;
}
footer .ft-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
footer .ft-col a.active {
  color: #ff008d;
}
footer .ft-col ul.products a {
  display: flex;
  font-size: 0.9rem;
  gap: 0.1rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: #000;
  opacity: 0.8;
  transition: opacity 0.15s;
  border: 1px solid transparent;
  border-radius: 8px;
}
footer .ft-col ul.products a.active {
  border-color: #d0d5dd;
}
footer .ft-col ul.products a.active .name {
  font-weight: 600;
}
footer .ft-col ul.products a:hover {
  background: #f1f5ff;
}
footer .ft-col ul.products a .icon {
  width: 15px;
  height: 15px;
  margin-right: 0.8rem;
}
footer .ft-col ul.products a .icon img {
  margin-top: 0.3rem;
}
footer .ft-col ul.products a .detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
}
footer .ft-col ul.products a .detail .desc {
  color: #667085;
  font-size: 0.8rem;
}
footer .ft-col ul.metanav a {
  display: block;
  padding: 0.2rem 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #667085;
}
footer .ft-col ul.metanav a:hover {
  text-decoration: underline;
  color: #ff008d;
}
footer .privacy {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
}
footer .privacy a {
  color: #ff008d;
}
footer .ft-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}
footer .ft-bottom-disclaimer {
  font-size: 0.8rem;
  color: #667085;
  margin: 1rem auto 0 auto;
  border-top: 1px solid #e4e7ec;
  padding-top: 1rem;
  max-width: 1280px;
}
@media (max-width: 960px) {
  footer .ft-right {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  footer {
    margin-top: 4rem;
    padding: 2rem 1rem 1.5rem;
  }
  footer .ft-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 1.5rem;
    max-width: 300px;
  }
  footer .ft-right {
    min-width: 0;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  footer .ft-col {
    padding-right: 0;
    text-align: center;
    margin-bottom: 4rem;
  }
  footer .ft-col ul {
    align-items: left;
    width: 100%;
  }
  footer .ft-col ul li {
    width: 100%;
  }
  footer .ft-col .social-links {
    justify-content: center;
    display: flex;
  }
  footer .ft-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  footer .ft-bottom-disclaimer {
    text-align: center;
  }
}
@media (max-width: 480px) {
  footer .ft-right {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=styles.css.map */