@import "https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css";
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css";
/* [project]/src/styles/globals.css [app-client] (css) */
:root {
  --first_color: #5e17eb;
  --second_color: #000;
  --third_color: #ff6100;
  --fourth_color: #f7f3ff;
  --fifth_color: #fff;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: Poppins, sans-serif;
}

.heading-variant-1 {
  color: var(--second_color);
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 600;
}

.heading-variant-gradient {
  -webkit-text-fill-color: transparent;
  text-align: center;
  background-image: linear-gradient(to right, #5e17eb, #cf0067, #ff6100);
  -webkit-background-clip: text;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.heading-variant-4 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  .heading-variant-1 {
    text-align: left;
    font-size: 48px;
  }

  .heading-variant-gradient {
    text-align: left;
    font-size: 26px;
  }
}

.paragraph-variant-1, .paragraph-variant-2 {
  color: var(--second_color);
  text-align: center;
  font-weight: 300;
}

.paragraph-variant-1 {
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 17px;
}

.paragraph-variant-2 {
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 16px;
}

@media only screen and (min-width: 768px) {
  .paragraph-variant-1 {
    text-align: left;
    font-size: 20px;
  }

  .paragraph-variant-2 {
    text-align: left;
    font-size: 18px;
  }
}

.btn-variant-1, .btn-variant-2, .btn-variant-3, .btn-variant-4 {
  cursor: pointer;
  padding: .2em 1em;
  font-size: 15px;
  display: inline-block;
}

.btn-variant-1 {
  color: var(--fifth_color);
  background: linear-gradient(135deg, #ff6100, #ff8533);
  border: 1px solid #0000;
  border-radius: 50px;
  transition: all .3s;
  box-shadow: 0 4px 15px #ff610033;
}

.btn-variant-2 {
  color: var(--fifth_color);
  background: linear-gradient(135deg, #ff6100, #ff8533);
  border: 1px solid #0000;
  border-radius: 10px;
  transition: all .3s;
  box-shadow: 0 4px 15px #ff610033;
}

.btn-variant-3 {
  border: 2px solid var(--first_color);
  color: var(--first_color);
  background: #f7feff;
  border-radius: 10px;
  transition: all .3s;
}

.btn-variant-4 {
  color: var(--fifth_color);
  background: linear-gradient(135deg, #5e17eb, #7c3aed);
  border: 1px solid #0000;
  border-radius: 50px;
  transition: all .3s;
  box-shadow: 0 4px 15px #5e17eb33;
}

.btn-variant-1:hover, .btn-variant-1:active, .btn-variant-2:hover, .btn-variant-2:active {
  color: var(--fifth_color);
  background: linear-gradient(135deg, #e55500, #ff6100);
  border: 1px solid #0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #ff610066;
}

.btn-variant-3:hover, .btn-variant-3:active {
  background: var(--first_color);
  border: 2px solid var(--first_color);
  color: var(--fifth_color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #5e17eb4d;
}

.btn-variant-4:hover, .btn-variant-4:active {
  color: var(--fifth_color);
  background: linear-gradient(135deg, #4c1d95, #5e17eb);
  border: 1px solid #0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #5e17eb66;
}

@media only screen and (min-width: 768px) {
  .btn-variant-1, .btn-variant-2, .btn-variant-3, .btn-variant-4 {
    font-size: 17px;
  }
}

.navbar .nav-auth-btn.btn-variant-1 {
  padding: .2em 1em !important;
  font-size: 15px !important;
}

@media only screen and (min-width: 768px) {
  .navbar .nav-auth-btn.btn-variant-1 {
    font-size: 17px !important;
  }
}

header {
  height: 50px;
}

.navbar {
  z-index: 1030;
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
  background-color: #ffffffd9;
  transition: background-color .3s, box-shadow .3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar.scrolled {
  background-color: #fffffff2;
  box-shadow: 0 2px 20px #00000014;
}

body:has(.navbar) {
  padding-top: 80px;
}

.nav-link {
  color: var(--second_color);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
  position: relative;
  padding: 8px 4px !important;
}

.nav-link:after {
  content: "";
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  border-radius: 1px;
  width: 0;
  height: 2px;
  transition: width .3s, left .3s;
  position: absolute;
  bottom: 0;
  left: 50%;
}

.nav-link:hover {
  color: var(--first_color);
  text-decoration: none;
}

.nav-link:hover:after {
  width: 100%;
  left: 0;
}

.nav-link.active {
  color: var(--first_color);
}

.nav-link.active:after {
  background: var(--first_color);
  width: 100%;
  left: 0;
}

@media only screen and (min-width: 992px) {
  .nav-link {
    font-size: 17px;
  }
}

@media only screen and (max-width: 991.98px) {
  body:has(.navbar) {
    padding-top: 70px;
  }

  .navbar-collapse {
    -webkit-backdrop-filter: blur(12px);
    background-color: #fffffffa;
    border-radius: 0 0 12px 12px;
    margin-top: 8px;
    padding: 16px;
    box-shadow: 0 8px 24px #0000001a;
  }

  .nav-link {
    border-bottom: 1px solid #0000000d;
    font-size: 18px;
    padding: 12px 8px !important;
  }

  .nav-link:after {
    display: none;
  }

  .nav-link.active {
    color: var(--first_color);
    border-left: 3px solid var(--first_color);
    background-color: #5e17eb0a;
    border-radius: 4px;
    padding-left: 12px !important;
  }
}

.third-section-image {
  margin-top: 30px;
}

@media only screen and (min-width: 768px) {
  .third-section-image {
    margin-top: -60px;
  }
}

.fourth-section-carousel img {
  width: 100%;
}

.second-section-carousel img {
  border: solid var(--third_color) 15px;
  border-radius: 15px;
  width: 80%;
}

.second-section-carousel-dots, .fourth-section-carousel-dots {
  justify-content: center;
  margin-top: 10px;
  display: flex;
}

.second-section-carousel-dot, .fourth-section-carousel-dot {
  cursor: pointer;
  background-color: #808285;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  transition: background-color .3s;
}

.second-section-carousel-dot.active, .fourth-section-carousel-dot.active {
  background-color: #262626;
}

.second-section-carousel-dot {
  width: 16px;
  height: 16px;
}

.fifth-section-carousel {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}

.fifth-section-carousel-track-reverse {
  gap: 20px;
  animation: 35s linear infinite scrollRight;
  display: flex;
}

.fifth-section-carousel-track {
  gap: 20px;
  animation: 35s linear infinite scroll;
  display: flex;
}

@media only screen and (min-width: 768px) {
  .fifth-section-carousel-track img, .fifth-section-carousel-track-reverse img {
    width: 100%;
    height: auto;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

.sixth-section-carousel-container {
  color: var(--fifth_color);
  background: #fff;
  padding-top: 88px;
  position: relative;
  overflow: hidden;
}

.sixth-section-intro {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.sixth-section-intro .heading-variant-1, .sixth-section-intro .paragraph-variant-1 {
  text-align: center;
}

.sixth-section-swiper {
  background: none;
  width: min(100%, 1080px);
  margin-inline: auto;
  padding: 0 12px 44px;
}

.sixth-section-swiper:before, .sixth-section-swiper:after {
  content: none !important;
  display: none !important;
}

.sixth-section-swiper .swiper-slide-shadow-left, .sixth-section-swiper .swiper-slide-shadow-right, .sixth-section-swiper .swiper-slide-shadow-top, .sixth-section-swiper .swiper-slide-shadow-bottom {
  background: none !important;
  display: none !important;
}

.swiper-slide {
  text-align: center;
  flex-shrink: 0;
  width: min(320px, 100vw - 64px);
  height: 490px;
  padding: 34px 20px 20px;
}

.sixth-section-slide-card {
  width: 100%;
  height: 100%;
  box-shadow: none;
  border-radius: 28px;
  padding: 28px 24px;
}

.sixth-section-copy {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 240px;
  display: flex;
}

.swiper-slide img {
  width: 80px;
  height: 80px;
}

.swiper-slide h1 {
  justify-content: center;
  align-items: center;
  min-height: 128px;
  margin: 0;
  font-weight: 600;
  display: flex;
}

.swiper-slide p {
  justify-content: center;
  align-items: flex-start;
  min-height: 96px;
  margin: 0;
  font-size: 18px;
  display: flex;
}

.sixth-section-copy-placeholder {
  visibility: hidden;
}

.sixth-section-carousel-1, .sixth-section-carousel-3 {
  background-color: #fa5500;
}

.sixth-section-carousel-2, .sixth-section-carousel-4, .sixth-section-carousel-5 {
  background-color: #5014e6;
}

.swiper {
  margin-inline: auto;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .sixth-section-swiper {
    width: min(100%, 1040px);
    padding-inline: 0;
  }

  .swiper-slide {
    width: 300px;
    height: 500px;
  }

  .sixth-section-intro {
    margin-bottom: 8px;
  }

  .swiper:before {
    content: "";
    background: var(--fifth_color);
    z-index: 100;
    border-radius: 100%;
    width: 120%;
    height: 100px;
    position: absolute;
    top: -60px;
    left: -10%;
  }

  .swiper:after {
    content: "";
    background: var(--fifth_color);
    z-index: 1000;
    border-radius: 100%;
    width: 120%;
    height: 100px;
    position: absolute;
    bottom: -60px;
    left: -10%;
  }
}

.seventh-section-card {
  border: 1px solid #21212125;
  border-radius: 8px;
  width: 400px;
  max-width: 100%;
  min-height: 200px;
  padding: 18px;
  text-decoration: none;
  transition: all .3s;
  position: relative;
  box-shadow: 0 2px 14px #20282d14;
}

.seventh-section-card-inner-container {
  color: #616161;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  height: 100%;
  display: flex;
}

.seventh-section-card-inner-heading-container {
  flex-direction: column;
  gap: 10px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  display: flex;
}

.seventh-section-card-inner-container h1 {
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.334em;
}

.seventh-section-card-inner-container p {
  overflow-wrap: break-word;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  font-size: 14px;
  display: -webkit-box;
  overflow: hidden;
}

.seventh-section-card-inner-image-container {
  flex-direction: row;
  gap: 8px;
  display: flex;
}

.seventh-section-card-inner-image-container p {
  margin: 0;
  font-size: .9rem;
  font-weight: 200;
  line-height: 26px;
}

.seventh-section-card-inner-image-container img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 5px;
}

.seventh-section-card-inner-image {
  background-color: #e0e0e075;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  overflow: hidden;
}

.seventh-section-card:hover {
  cursor: pointer;
  border: 1px solid #5e17eb66;
  transform: translateY(-3px);
  box-shadow: 0 5px 17px #5e17eb33;
}

.seventh-section-popular-label {
  box-sizing: border-box;
  z-index: 1;
  color: #fff;
  transform-origin: 100% 0;
  background-color: #5e17eb;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-family: Poppins, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1;
  transition: transform .225s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: absolute;
  top: 0;
  right: 10px;
  transform: scale(1)translate(50%, -50%);
}

.accordion {
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  display: flex;
}

.accordion-button {
  color: var(--second_color);
  box-shadow: none;
  background: #f7f3ff;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  box-shadow: none !important;
  border: none !important;
  border-radius: 15px !important;
}

.accordion-item {
  color: var(--second_color);
  background: #f7f3ff;
  border: none !important;
}

.accordion-button:after {
  color: var(--second_color);
  font-size: 14px;
  transition: transform .3s ease-in-out;
}

.accordion-button:not(.collapsed):after {
  transform: rotate(180deg);
}

.accordion-body {
  color: #616161;
  background-color: #f7f3ff;
  font-size: 16px;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--second_color);
  background-color: #f7f3ff;
}

.accordion-header {
  border: none !important;
}

.footer {
  color: var(--second_color);
  background-color: #fdfdfd;
  border-top: 1px solid #e3e2e2;
  padding: 4rem 0 2rem;
}

.footer h3 {
  color: var(--first_color);
  margin-bottom: .25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links {
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: .25rem;
}

.footer-links a {
  color: var(--second_color);
  font-size: .95rem;
  text-decoration: none;
  transition: color .3s;
}

.footer p {
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--first_color);
}

.footer-bottom {
  border-top: 1px solid #e3e2e2;
  margin-top: 3rem;
  padding-top: 2rem;
  font-size: 14px;
}

.footer-bottom a {
  color: #ff6100;
  text-decoration: none;
}

.icon-image {
  height: 30px;
}

.icon {
  width: 24px;
  height: 24px;
  color: var(--first_color);
}

.gradient-text {
  background: linear-gradient(135deg, #5e17eb, #cf0067, #ff6100);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.navbar .dropdown-menu {
  -webkit-backdrop-filter: blur(16px);
  background: #fffffff7;
  border: 1px solid #5e17eb14;
  border-radius: 12px;
  min-width: 240px;
  margin-top: 0;
  padding: 8px 0;
  box-shadow: 0 8px 32px #5e17eb1f;
}

.navbar .dropdown-toggle {
  position: relative;
}

@media only screen and (min-width: 992px) {
  .navbar .dropdown-toggle:before {
    content: "";
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: -10px;
    left: 0;
  }
}

.navbar .dropdown-item {
  color: var(--second_color);
  padding: 10px 20px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all .2s;
}

.navbar .dropdown-item:hover, .navbar .dropdown-item:focus {
  color: var(--first_color);
  background: #5e17eb0f;
}

.navbar .dropdown-item.active, .navbar .dropdown-item:active {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
}

.navbar .dropdown-item.active i, .navbar .dropdown-item:active i {
  color: #fff;
}

.navbar .dropdown-item i {
  width: 22px;
  color: var(--first_color);
}

.nav-link.dropdown-toggle:after {
  content: "";
  vertical-align: middle;
  -webkit-text-fill-color: currentColor;
  background: none;
  border: none;
  width: auto;
  height: auto;
  margin-left: 4px;
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
  display: inline;
  position: static;
}

@media only screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media only screen and (max-width: 991.98px) {
  .navbar .dropdown-menu {
    -webkit-backdrop-filter: none;
    box-shadow: none;
    background: none;
    border: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0 0 0 16px;
    display: block;
  }

  .navbar .dropdown-item {
    border-bottom: 1px solid #0000000a;
    padding: 10px 12px;
    font-size: 16px;
  }
}

.coworker-card {
  text-align: center;
  background: #fff;
  border: 1px solid #5e17eb14;
  border-radius: 16px;
  flex-direction: column;
  height: 100%;
  padding: 30px 24px;
  transition: all .3s;
  display: flex;
  box-shadow: 0 4px 16px #0000000a;
}

.coworker-card:hover {
  border-color: #5e17eb33;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px #5e17eb1f;
}

.coworker-avatar {
  color: #fff;
  border: 3px solid #e8e0f5;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  font-size: 28px;
  display: flex;
  overflow: hidden;
}

.coworker-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.department-badge {
  color: var(--first_color);
  background: #5e17eb14;
  border-radius: 20px;
  margin-bottom: 12px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.coworker-card .capability-list {
  text-align: left;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.coworker-card .capability-list li {
  color: #555;
  padding: 4px 0;
  font-size: 14px;
}

.phase-card {
  background: #fff;
  border: 1px solid #5e17eb14;
  border-radius: 16px;
  height: 100%;
  padding: 36px 28px;
  transition: all .3s;
  position: relative;
  box-shadow: 0 4px 16px #0000000a;
}

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px #5e17eb1a;
}

.phase-number {
  background: linear-gradient(135deg, #5e17eb, #cf0067, #ff6100);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 8px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.phase-title {
  color: var(--second_color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 700;
}

.phase-tagline {
  color: #888;
  margin-bottom: 20px;
  font-size: 15px;
  font-style: italic;
}

.phase-details {
  margin: 0;
  padding: 0;
  list-style: none;
}

.phase-details li {
  color: #555;
  border-bottom: 1px solid #0000000a;
  padding: 8px 0 8px 24px;
  font-size: 15px;
  position: relative;
}

.phase-details li:before {
  content: "";
  color: var(--first_color);
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
  position: absolute;
  left: 0;
}

.phase-details li:last-child {
  border-bottom: none;
}

@media only screen and (min-width: 992px) {
  .phase-card:after {
    content: "";
    color: #5e17eb4d;
    z-index: 1;
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
  }

  .phase-card:last-child:after {
    display: none;
  }
}

.phase-badge {
  color: var(--first_color);
  background: linear-gradient(135deg, #5e17eb1a, #cf00671a);
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
}

.coworker-carousel {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.coworker-carousel-track {
  gap: 24px;
  transition: transform .5s;
  display: flex;
}

.coworker-carousel-track .coworker-card {
  flex-shrink: 0;
  min-width: 280px;
}

.carousel-dots {
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  display: flex;
}

.carousel-dot {
  cursor: pointer;
  background: #ddd;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: all .3s;
}

.carousel-dot.active {
  background: var(--first_color);
  transform: scale(1.2);
}

.value-prop-card {
  text-align: center;
  background: #5e17eb08;
  border: 1px solid #5e17eb0f;
  border-radius: 16px;
  height: 100%;
  padding: 32px 24px;
}

.value-prop-card i {
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 16px;
  font-size: 36px;
}

.use-cases-preview {
  background: linear-gradient(135deg, #f7f3ff 0%, #fff 100%);
  padding: 80px 0;
}

.use-case-preview-card {
  background: #fff;
  border: 1px solid #5e17eb1a;
  border-radius: 15px;
  height: 100%;
  padding: 25px;
  transition: all .3s;
  box-shadow: 0 8px 25px #5e17eb1a;
}

.use-case-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px #5e17eb26;
}

.use-case-icon {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  font-size: 24px;
  display: flex;
}

.category-badge {
  color: #5e17eb;
  text-transform: uppercase;
  background: #5e17eb1a;
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.stats-highlight {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #5e17eb 0%, #cf0067 50%, #ff6100 100%);
  padding: 60px 0;
}

.stat-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 15px;
  padding: 30px 20px;
}

.stat-number {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 700;
  display: block;
}

.cta-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.cta-card {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px #0000001a;
}

.cta-btn-outline {
  color: #ff6100;
  background: #fff;
  border: 2px solid #ff6100;
  border-radius: 50px;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.cta-btn-outline:hover {
  color: #fff;
  background: #ff6100;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #ff61004d;
}

.cta-btn-gradient {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb 0%, #cf0067 50%, #ff6100 100%);
  border: none;
  border-radius: 50px;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  box-shadow: 0 4px 15px #5e17eb33;
}

.cta-btn-gradient:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #5e17eb66;
}

.browse-all-btn {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb 0%, #cf0067 100%);
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.browse-all-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px #5e17eb4d;
}

.video-demo-section {
  background: #fff;
  padding: 80px 0;
}

.video-container {
  border-radius: 15px;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px #5e17eb26;
}

.video-container iframe {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-email-form {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  align-items: stretch;
  gap: 0;
  max-width: 460px;
  padding: 4px;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  box-shadow: 0 2px 12px #0000000a;
}

.hero-email-form:focus-within {
  border-color: #5e17eb;
  box-shadow: 0 4px 16px #5e17eb26;
}

.hero-email-form input {
  color: #111827;
  background: none;
  border: none;
  outline: none;
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  font-size: 15px;
}

.hero-email-form input::placeholder {
  color: #9ca3af;
}

.hero-email-form button {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: linear-gradient(135deg, #1a0533, #2d1050);
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .15s, box-shadow .25s;
}

.hero-email-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px #1a05334d;
}

.hero-email-sub {
  color: #6b7280;
  margin: 8px 0 0;
  font-size: 12px;
}

.trusted-by {
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 48px 0;
  overflow: hidden;
}

.trusted-by-label {
  text-align: center;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
}

.trusted-marquee {
  display: flex;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #0000, #000 80px calc(100% - 80px), #0000);
  mask-image: linear-gradient(to right, #0000, #000 80px calc(100% - 80px), #0000);
}

.trusted-track {
  flex-shrink: 0;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  animation: 90s linear infinite trusted-scroll;
  display: flex;
}

.trusted-marquee:hover .trusted-track {
  animation-play-state: paused;
}

@keyframes trusted-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trusted-logo {
  opacity: .65;
  filter: grayscale();
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  height: 44px;
  transition: opacity .2s, filter .2s;
  display: flex;
}

.trusted-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

.trusted-logo img {
  object-fit: contain;
  max-width: 150px;
  max-height: 100%;
  display: block;
}

.trusted-logo-text {
  letter-spacing: -.5px;
  color: #4b5563;
  white-space: nowrap;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .trusted-track {
    animation: none;
  }
}

/*# sourceMappingURL=src_styles_globals_0c8m6fs.css.map*/