@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0d0d0d;
  color: #ededed;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  background: radial-gradient(circle at 20% 20%, #1a1a2e, #0f0f1a);
  color: #fff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (min-width: 1280px) {
  .container {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

.section-padding, .footer, .testimonials, .pricing, .team, .faq__body, .faq__header, .features, .stats {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .section-padding, .footer, .testimonials, .pricing, .team, .faq__body, .faq__header, .features, .stats {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 1024px) {
  .section-padding, .footer, .testimonials, .pricing, .team, .faq__body, .faq__header, .features, .stats {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (min-width: 1280px) {
  .section-padding, .footer, .testimonials, .pricing, .team, .faq__body, .faq__header, .features, .stats {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  background: #0d0d0d;
}
@media (min-width: 768px) {
  .nav {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 1024px) {
  .nav {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (min-width: 1280px) {
  .nav {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

.nav__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__inner a img {
  max-width: 55px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.nav__links {
  display: none;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  padding: 0.25rem 0.75rem;
  color: #ededed;
}
.nav__link:hover {
  color: #888888;
}

.nav__menu-btn {
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ededed;
}
@media (min-width: 768px) {
  .nav__menu-btn {
    display: none;
  }
}

.btn-primary {
  display: none;
  padding: 0.5rem 1.5rem;
  background: #5e6ad2;
  color: white;
  border-radius: 9999px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.btn-primary:hover {
  background: #6d78e0;
}
@media (min-width: 768px) {
  .btn-primary {
    display: inline-block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background: #141414;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  height: 0;
  overflow: hidden;
}

.mobile-menu.is-open {
  height: auto;
  min-height: 100vh;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.mobile-menu__close {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #ededed;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  font-size: 1rem;
}

.mobile-menu__link {
  padding: 0.25rem 0.75rem;
  color: #ededed;
}

.mobile-menu__cta {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(to top left, #ea580c, #f97316);
  color: white;
  border-radius: 9999px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  max-width: -moz-max-content;
  max-width: max-content;
}

.hero {
  position: relative;
  height: 1010px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: calc(80px + 2rem) 1rem 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (min-width: 1280px) {
  .hero {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(94, 106, 210, 0.15), transparent), radial-gradient(ellipse 60% 40% at 80% 50%, rgba(94, 106, 210, 0.08), transparent), radial-gradient(ellipse 50% 30% at 20% 80%, rgba(94, 106, 210, 0.06), transparent);
}

.hero__inner {
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes badgeSheen {
  0% {
    transform: translateX(-140%);
    opacity: 0;
  }
  35% {
    opacity: 0.55;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: translateX(140%);
    opacity: 0;
  }
}
.hero [data-animate] {
  animation: heroFadeUp 0.6s ease-out backwards;
}

.hero__badge[data-animate] {
  animation-delay: 0.1s;
}

.hero__title[data-animate] {
  animation-delay: 0.2s;
}

.hero__subtitle[data-animate] {
  animation-delay: 0.3s;
}

.hero__cta-wrap[data-animate] {
  animation-delay: 0.4s;
}

.hero__image[data-animate] {
  animation-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .hero [data-animate] {
    animation: none;
  }
  .hero__badge::after {
    animation: none;
  }
}
.hero__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -12px 28px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.hero__badge::before {
  content: "";
  position: absolute;
  inset: -60% -10% auto -10%;
  height: 140%;
  background: radial-gradient(140px 90px at 20% 30%, rgba(255, 255, 255, 0.7), transparent 60%), linear-gradient(120deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 55%);
  opacity: 0.6;
  transform: translateY(-18%) rotate(-3deg);
  pointer-events: none;
}
.hero__badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.4) 35%, transparent 60%);
  transform: translateX(-140%);
  animation: badgeSheen 7.5s ease-in-out infinite;
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__badge > * {
  position: relative;
  z-index: 1;
}

.hero__badge-avatars {
  display: flex;
  align-items: center;
}

.hero__badge-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 2px solid #141414;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: -0.5rem;
}
.hero__badge-avatar:first-child {
  margin-left: 0;
}

.hero__badge-text {
  font-weight: 400;
}
.hero__badge-text strong {
  color: #ededed;
  font-weight: 600;
}

.hero__badge-divider {
  width: 1px;
  height: 1rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.12));
  border-radius: 9999px;
}

.hero__badge-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hero__badge-stars .icon-star {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  fill: #5e6ad2;
  color: #5e6ad2;
}
.hero__badge-stars strong {
  color: #ededed;
  font-weight: 600;
}

.hero__title {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ededed;
  max-width: 20ch;
  margin: 1.5rem 0 0;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    max-width: 100%;
    margin-top: 2rem;
  }
}

.hero__title-accent {
  background: linear-gradient(135deg, #5e6ad2 0%, rgb(141.8310679612, 150.2660194175, 223.3689320388) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #888888;
  max-width: 36rem;
  margin: 1.25rem 0 0;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }
}

.hero__cta-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .hero__cta-wrap {
    margin-top: 2.5rem;
  }
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero__cta:active {
  transform: scale(0.98);
}

.hero__cta--primary {
  background: #5e6ad2;
  color: white;
  box-shadow: 0 4px 14px rgba(94, 106, 210, 0.4);
}
.hero__cta--primary:hover {
  background: #6d78e0;
  box-shadow: 0 6px 20px rgba(94, 106, 210, 0.45);
}

.hero__cta--secondary {
  background: transparent;
  color: #ededed;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero__title-icon {
  position: absolute;
  top: 0.5rem;
  right: 0;
  display: none;
}
@media (min-width: 1024px) {
  .hero__title-icon {
    display: block;
  }
}

.hero__title-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: #5e6ad2;
  border-radius: 0.5rem;
  color: white;
  box-shadow: 0 8px 24px rgba(94, 106, 210, 0.35);
  transform: rotate(12deg);
  transition: transform 0.25s ease;
}
.hero__title-icon-box:hover {
  transform: rotate(12deg) scale(1.05);
}

.hero__image {
  position: relative;
  width: 100%;
  max-width: 72rem;
  padding-top: 3rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero__image {
    padding-top: 2.5rem;
  }
}
.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.stats {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 1rem;
}

.stats__grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.stats__value {
  font-size: 2.25rem;
  font-weight: 600;
  font-family: "Urbanist", "Inter", sans-serif;
  margin: 0;
}

.stats__label {
  color: #888888;
  margin: 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-head {
    flex-direction: row;
    align-items: center;
  }
}

.section-head__icon {
  background: #5e6ad2;
  box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.25), 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  color: white;
  transform: rotate(-15deg);
  display: flex;
}

.section-head__title {
  font-size: 2.25rem;
  font-weight: 600;
  font-family: "Urbanist", "Inter", sans-serif;
  margin: 0;
}

.section-head__subtitle {
  color: #888888;
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  max-width: 32rem;
}
@media (min-width: 768px) {
  .section-head__subtitle {
    text-align: left;
  }
}

.section-head--center .section-head__subtitle {
  text-align: center;
}

.features__grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .features__grid > *:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.features__left {
  padding: 1rem;
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .features__left {
    padding: 4rem;
    position: sticky;
    top: 4rem;
  }
}

.features__left-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 6.5rem;
}
@media (min-width: 768px) {
  .features__left-inner {
    align-items: flex-start;
  }
}

.features__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .features__head {
    flex-direction: row;
    align-items: center;
  }
}

.features__head-text {
  text-align: center;
  max-width: 24rem;
}
@media (min-width: 768px) {
  .features__head-text {
    text-align: left;
  }
}

.features__cta-box {
  padding: 1rem;
  background: #5e6ad2;
  width: 100%;
  border-radius: 0.75rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .features__cta-box {
    padding: 1.5rem;
  }
}

.features__cta-box p {
  font-size: 1.125rem;
  color: white;
  margin: 0;
}

.features__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: white;
  color: #0d0d0d;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-top: 1.5rem;
  max-width: -moz-max-content;
  max-width: max-content;
}
.features__cta-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.features__right {
  padding: 1rem;
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .features__right {
    padding: 4rem;
  }
}

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

.feature-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 6.5rem;
}

.feature-card__icon {
  padding: 0.5rem;
  color: white;
  border-radius: 0.375rem;
  width: -moz-max-content;
  width: max-content;
}
.feature-card__icon.icon-orange {
  background: #5e6ad2;
}
.feature-card__icon.icon-green {
  background: #5e6ad2;
}
.feature-card__icon.icon-indigo {
  background: #5e6ad2;
}
.feature-card__icon.icon-pink {
  background: #5e6ad2;
}
.feature-card__icon.icon-lime {
  background: #5e6ad2;
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 500;
  margin: 1rem 0 0;
}

.feature-card__desc {
  font-size: 0.875rem;
  color: #888888;
  margin: 0.5rem 0 0;
}

.faq {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .faq__header-inner {
    padding: 5rem;
  }
}

.faq__header-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.faq__body {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .faq__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .faq__grid > * + * {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.faq__list {
  padding: 1rem;
  padding-top: 5rem;
}
@media (min-width: 768px) {
  .faq__list {
    padding: 5rem;
  }
}

.faq__list-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
}
.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  list-style: none;
}
.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__title {
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

.faq-item__chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item__content {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #888888;
  max-width: 28rem;
  padding: 0 1.5rem 1.5rem;
  margin-top: -0.5rem;
}

.faq__contact {
  padding: 1rem;
  padding-top: 5rem;
}
@media (min-width: 768px) {
  .faq__contact {
    padding: 5rem;
  }
}

.faq__contact-box {
  position: sticky;
  top: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #5e6ad2;
  width: 100%;
  border-radius: 0.75rem;
  margin-top: 3rem;
}

.faq__contact-box h3 {
  font-size: 1.125rem;
  color: white;
  margin: 0;
  text-wrap: balance;
}

.faq__contact-link {
  background: white;
  color: #0d0d0d;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  flex-shrink: 0;
}
.faq__contact-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.team {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.team__head-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .team__head-title-wrap {
    flex-direction: row;
  }
}

.team__subtitle {
  color: #888888;
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  max-width: 32rem;
}

.team__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 6rem;
}
@media (min-width: 768px) {
  .team__grid {
    gap: 1.5rem;
  }
}

.team__card {
  display: flex;
  flex-direction: column;
}

.team__card-img {
  width: 13rem;
  height: 16rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

.team__card-name {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0.5rem 0 0;
}

.team__card-role {
  color: #888888;
  margin: 0;
}

.pricing {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  padding-top: 5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.pricing__head-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .pricing__head-title-wrap {
    flex-direction: row;
  }
}

.pricing__subtitle {
  color: #888888;
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  max-width: 32rem;
}

.pricing__toggle {
  margin-top: 2.5rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(94, 106, 210, 0.12);
  border-radius: 9999px;
  display: inline-flex;
}

.pricing__toggle-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  font: inherit;
  background: transparent;
  color: #888888;
}
.pricing__toggle-btn.is-active {
  background: #5e6ad2;
  color: white;
}

.pricing__toggle-badge {
  position: relative;
}

.pricing__toggle-badge span {
  position: absolute;
  top: -2rem;
  right: -2rem;
  transform: rotate(15deg);
  background: rgba(94, 106, 210, 0.2);
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: #7c9c7c;
}

.pricing__cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 2.5rem;
  padding: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .pricing__cards {
    gap: 1rem;
  }
}

.pricing-card {
  padding: 1.25rem;
  padding-bottom: 2rem;
  width: 100%;
  max-width: 16rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #141414;
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) {
  .pricing-card {
    max-width: 30rem;
  }
}

.pricing-card--highlight {
  background: linear-gradient(to bottom right, rgba(94, 106, 210, 0.12), rgba(94, 106, 210, 0.18));
}

.pricing-card--enterprise {
  background: #5e6ad2;
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.pricing-card__icon {
  width: -moz-max-content;
  width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  color: #5e6ad2;
  background: #141414;
  display: flex;
}

.pricing-card--enterprise .pricing-card__icon {
  color: white;
  border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 1.5rem 0 0;
}

.pricing-card__desc {
  color: #888888;
  margin: 0 0 0.5rem 0;
}

.pricing-card--enterprise .pricing-card__desc {
  color: white;
}

.pricing-card__price {
  font-size: 1.875rem;
  font-weight: 600;
  margin: auto 0 0 0;
}

.pricing-card__cta {
  display: block;
  text-align: center;
  padding: 0.5rem;
  border-radius: 9999px;
  margin-top: 1.5rem;
  color: #888888;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.pricing-card__cta:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pricing-card--enterprise .pricing-card__cta {
  color: #888888;
  background: #141414;
  border-color: rgba(255, 255, 255, 0.08);
}

.pricing-card__features {
  margin-top: 1.5rem;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card__feature .icon-check {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #5e6ad2;
}

.pricing-card--enterprise .pricing-card__feature .icon-check {
  color: white;
}

.pricing-card__feature span {
  color: #888888;
}

.pricing-card--enterprise .pricing-card__feature span {
  color: white;
}

.testimonials {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonials__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonials__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.testimonials__head-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .testimonials__head-title-wrap {
    flex-direction: row;
  }
}

.testimonials__subtitle {
  color: #888888;
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  max-width: 32rem;
}

.testimonials__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
}

.testimonial-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  max-width: 20rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  background: #141414;
}

.testimonial-card--accent {
  background: #5e6ad2;
}

.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.testimonial-card__stars .icon-star {
  width: 1.25rem;
  height: 1.25rem;
  fill: #5e6ad2;
  color: #5e6ad2;
}

.testimonial-card--accent .testimonial-card__stars .icon-star {
  fill: white;
  color: white;
}

.testimonial-card__quote {
  margin: 1rem 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #888888;
}

.testimonial-card--accent .testimonial-card__quote {
  color: white;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-card__name {
  font-weight: 500;
  color: #ededed;
  margin: 0;
}

.testimonial-card--accent .testimonial-card__name {
  color: white;
}

.testimonial-card__handle {
  font-size: 0.75rem;
  color: #888888;
  margin: 0;
}

.testimonial-card--accent .testimonial-card__handle {
  color: white;
}

.testimonials__more {
  margin-top: 5rem;
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  background: rgba(94, 106, 210, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #5e6ad2;
}

.footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .footer__inner {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 2rem;
  overflow: hidden;
  padding-bottom: 10.5rem;
}
.footer__content > div {
  position: relative;
}
@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
    padding: 3rem;
  }
}

.footer__logo-bg {
  position: absolute;
  bottom: -4.5rem;
  left: 0;
  height: 15.5rem;
  width: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  opacity: 0.15;
}

.footer__logo {
  width: auto;
}

.footer__text {
  color: #888888;
  margin: 1rem 0;
  padding-bottom: 1.5rem;
  max-width: 18rem;
}

.footer__copyright {
  color: #888888;
  margin: 1rem 0;
  padding-bottom: 1.5rem;
}

.footer__copyright a {
  color: #5e6ad2;
}

.footer__social-title {
  text-transform: uppercase;
  font-weight: 600;
  color: #5e6ad2;
  font-size: 1rem;
  margin: 0;
}

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5e6ad2;
}/*# sourceMappingURL=main.css.map */