/* features-page: consolidated CSS for features.html */

/* -------------------------------------------------------------------------- */
/* Base reset (from assets/features/css/features-global.css) */
/* -------------------------------------------------------------------------- */
a,
button,
input,
select,
h1,
h2,
h3,
h4,
h5,
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;

  -webkit-font-smoothing: antialiased;
}

menu,
ol,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* -------------------------------------------------------------------------- */
/* Variables (from assets/features/css/features-vars.css) */
/* -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --primary-50: #ee91a2;
  --primary-100: #0db0c8;
  --primary-200: #a7cdfc;
  --primary-300: #8abdfb;
  --primary-400: #6cacfa;
  --primary-500: #4f9cf9;
  --primary-600: #4282cf;
  --primary-700: #3568a6;
  --primary-800: #284e7d;
  --primary-900: #1a3453;
  --primary-1000: #101f32;
  --secondary-50: #cdd7e3;
  --secondary-100: #abbdd0;
  --secondary-200: #819bb9;
  --secondary-300: #587aa2;
  --secondary-400: #2e598a;
  --secondary-500: #043873;
  --secondary-600: #032f60;
  --secondary-700: #03254d;
  --secondary-800: #021c3a;
  --secondary-900: #011326;
  --secondary-1000: #010b17;

  /* Fonts */
  --header-h1-font-family: Inter-Bold, sans-serif;
  --header-h1-font-size: 4.5rem;
  --header-h1-line-height: normal;
  --header-h1-font-weight: 700;
  --header-h1-font-style: normal;
  --header-h2-font-family: Inter-Bold, sans-serif;
  --header-h2-font-size: 4rem;
  --header-h2-line-height: normal;
  --header-h2-font-weight: 700;
  --header-h2-font-style: normal;
  --header-h3-font-family: Inter-Bold, sans-serif;
  --header-h3-font-size: 3.375rem;
  --header-h3-line-height: normal;
  --header-h3-font-weight: 700;
  --header-h3-font-style: normal;
  --header-h4-font-family: Inter-Bold, sans-serif;
  --header-h4-font-size: 2.25rem;
  --header-h4-line-height: normal;
  --header-h4-font-weight: 700;
  --header-h4-font-style: normal;
  --header-h5-font-family: Inter-Bold, sans-serif;
  --header-h5-font-size: 1.75rem;
  --header-h5-line-height: 2.25rem;
  --header-h5-font-weight: 700;
  --header-h5-font-style: normal;
  --paragraph-p1-semibold-font-family: Inter-SemiBold, sans-serif;
  --paragraph-p1-semibold-font-size: 1.5rem;
  --paragraph-p1-semibold-line-height: 2.25rem;
  --paragraph-p1-semibold-font-weight: 600;
  --paragraph-p1-semibold-font-style: normal;
  --paragraph-p1-regular-font-family: Inter-Regular, sans-serif;
  --paragraph-p1-regular-font-size: 1.5rem;
  --paragraph-p1-regular-line-height: 2rem;
  --paragraph-p1-regular-font-weight: 400;
  --paragraph-p1-regular-font-style: normal;
  --paragraph-p2-bold-font-family: Inter-Bold, sans-serif;
  --paragraph-p2-bold-font-size: 1.125rem;
  --paragraph-p2-bold-line-height: normal;
  --paragraph-p2-bold-font-weight: 700;
  --paragraph-p2-bold-font-style: normal;
  --paragraph-p2-medium-font-family: Inter-Medium, sans-serif;
  --paragraph-p2-medium-font-size: 1.125rem;
  --paragraph-p2-medium-line-height: 1.4375rem;
  --paragraph-p2-medium-font-weight: 500;
  --paragraph-p2-medium-font-style: normal;
  --paragraph-p2-regular-font-family: Inter-Regular, sans-serif;
  --paragraph-p2-regular-font-size: 1.125rem;
  --paragraph-p2-regular-line-height: 1.875rem;
  --paragraph-p2-regular-font-weight: 400;
  --paragraph-p2-regular-font-style: normal;
  --paragraph-p3-medium-font-family: Inter-Medium, sans-serif;
  --paragraph-p3-medium-font-size: 1rem;
  --paragraph-p3-medium-line-height: normal;
  --paragraph-p3-medium-font-weight: 500;
  --paragraph-p3-medium-font-style: normal;
  --paragraph-p3-regular-font-family: Inter-Regular, sans-serif;
  --paragraph-p3-regular-font-size: 1rem;
  --paragraph-p3-regular-line-height: 1.25rem;
  --paragraph-p3-regular-font-weight: 400;
  --paragraph-p3-regular-font-style: normal;

  /* Effects */
  --thumbnail-box-shadow: -1.25rem 1.25rem 2.5rem 0rem rgba(0, 0, 0, 0.25);
}

/* -------------------------------------------------------------------------- */
/* Tabs (from assets/features/css/tab.css) */
/* -------------------------------------------------------------------------- */
.tab-button {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  margin-bottom: 2rem;
}

.tab-button:hover .tab-indicator {
  background-color: #0b63e5;
  transition: background-color 300ms ease-in-out;
}

.tab-text {
  position: relative;
  transition: all 300ms ease-in-out;
}

.tab-button:hover .tab-text {
  color: var(--primary-50, #ee91a2) !important;
}
.tab-button.active .tab-text {
  color: var(--primary-50, #ee91a2) !important;
  font-weight: 500;
  font-family: "Inter-Medium", sans-serif;
  margin-bottom: 1.5rem;
}

.tab-button:not(.active) .tab-text {
  color: #1f2937;
  font-weight: 400;
  font-family: "Inter-Regular", sans-serif;
}

.tab-indicator {
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: background-color 300ms ease-in-out;
}

.tab-button.active .tab-indicator {
  background-color: #0b63e5;
}

.tab-button:not(.active) .tab-indicator {
  background-color: #ced0fa;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* -------------------------------------------------------------------------- */
/* Table utilities (from assets/features/css/table.css) */
/* -------------------------------------------------------------------------- */
*,
::after,
::before {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}
::after,
::before {
  --tw-content: "";
}
:disabled {
  cursor: default;
}
*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-scroll-snap-strictness: proximity;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
}
.relative {
  position: relative;
}
.flex {
  display: flex;
}
.h-\[70px\] {
  height: 70px;
}
.h-\[43px\] {
  height: 43px;
}
.h-12 {
  height: 3rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-0 {
  gap: 0px;
}
.self-stretch {
  align-self: stretch;
}
.overflow-hidden {
  overflow: hidden;
}
.rounded {
  border-radius: 0.25rem;
}
.border {
  border-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-l {
  border-left-width: 1px;
}
.border-solid {
  border-style: solid;
}
.border-\[\#b9b9b9\] {
  --tw-border-opacity: 1;
  border-color: rgb(185 185 185 / var(--tw-border-opacity));
}
.border-primary-50 {
  --tw-border-opacity: 1;
  border-color: rgb(238 145 162 / var(--tw-border-opacity));
}
.bg-\[\#ffffff\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-primary-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(238 145 162 / var(--tw-bg-opacity));
}
.bg-\[rgba\(0\2c 0\2c 0\2c 0\.06\)\] {
  background-color: rgba(0, 0, 0, 0.06);
}
.bg-\[rgba\(255\2c 255\2c 255\2c 0\.00\)\] {
  background-color: rgba(255, 255, 255, 0);
}
.pt-2\.5 {
  padding-top: 0.625rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pb-2\.5 {
  padding-bottom: 0.625rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.text-left {
  text-align: left;
}
.font-\[\'Inter-Regular\'\2c _sans-serif\] {
  font-family: "Inter-Regular", sans-serif;
}
.font-\[\'Inter-SemiBold\'\2c _sans-serif\] {
  font-family: "Inter-SemiBold", sans-serif;
}
.font-\[\'Montserrat-Regular\'\2c _sans-serif\] {
  font-family: "Montserrat-Regular", sans-serif;
}
.text-\[32px\] {
  font-size: 32px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.leading-5 {
  line-height: 1.25rem !important;
}
.leading-8 {
  line-height: 2rem !important;
}
.leading-\[130\%\] {
  line-height: 130%;
}
.leading-\[46px\] {
  line-height: 46px;
}
.leading-\[19px\] {
  line-height: 19px;
}
.text-\[\#000000\] {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-\[\#ffffff\] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

/* -------------------------------------------------------------------------- */
/* Misc features utilities (from assets/features/css/styles.css) */
/* -------------------------------------------------------------------------- */
.play-back-content {
  --tw-bg-opacity: 1;
  background-color: rgb(217 217 217 / var(--tw-bg-opacity));
  position: relative;
  display: flex;
}
.play-back-image {
  aspect-ratio: 400 / 854;
}
.play-back-image-bg {
  width: 100%;
}

.bg-gray-custom {
  background-color: #d9d9d9 !important;
}
.text-gray-custom {
  color: #d9d9d9 !important;
}
.border-gray-custom {
  border-color: #d9d9d9 !important;
}
.bg-cyan-custom {
  background-color: #06aec7 !important;
}

.text-cyan-custom {
  color: #06aec7 !important;
}
.to-cyan-custom {
  --tw-gradient-to: #06aec7 var(--tw-gradient-to-position) !important;
}
.border-cyan-custom {
  border-color: #06aec7 !important;
}
.tab-width-fixed {
  max-width: calc(1320px - 24px);
}

.left-\[50\%\] {
  left: 50%;
}
.right-\[0\%\] {
  right: 0%;
}
.left-\[0\%\] {
  left: 0%;
}
.bottom-\[0\%\] {
  bottom: 0%;
}
.top-\[0\%\] {
  top: 0%;
}
.top-\[4325px\] {
  top: 4325px;
}
.h-6 {
  height: 1.5rem;
}
.h-\[100\%\] {
  height: 100%;
}
.h-0 {
  height: 0px;
}
.w-6 {
  width: 1.5rem;
}
.w-\[100\%\] {
  width: 100%;
}
.w-\[552px\] {
  width: 552px;
}
.cursor-pointer {
  cursor: pointer;
}

.border-r-\[0\] {
  border-right-width: 0;
}
.border-b-\[0\] {
  border-bottom-width: 0;
}
.border-l-\[0\] {
  border-left-width: 0;
}
.border-gray-00 {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.bg-gray-00 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.font-\[\'Inter-Bold\'\2c _sans-serif\] {
  font-family: "Inter-Bold", sans-serif;
}
.font-inter-regular {
  font-family: Inter-Regular, sans-serif;
}

.text-\[\#212529\] {
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
}
.text-gray-00 {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

/* -------------------------------------------------------------------------- */
/* Layout helpers used by features.html (from assets/features/css/trusted.css) */
/* -------------------------------------------------------------------------- */
.hidden {
  display: none !important;
}

.large-container {
  width: -webkit-calc(min(95dvw, 1320px)) !important;
  width: -moz-calc(min(95dvw, 1320px)) !important;
  width: calc(min(95dvw, 1320px)) !important;
  margin: 0 auto !important;
}

.featuresPage-container {
  width: min(92.5rem, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.featuresPage-sectionTitle {
  margin: 0;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: -0.02em;
  line-height: 1.5;
}


.featuresPage-sectionLead {
  margin: 1.25rem auto 0;
  max-width: 60rem;
  color: #1f2937;
  font-weight: 500;
  line-height: 1.5rem;
}
.leading-features-7xl {
  line-height: 2.75rem !important;
}
.leading-features-6xl {
  line-height: 2.55rem !important;
}
.leading-features-5xl {
  line-height: 2.35rem !important;
}
/* -------------------------------------------------------------------------- */
/* Trusted slider + testimonials (trimmed from assets/features/css/trusted.css) */
/* -------------------------------------------------------------------------- */
.featuresPage-testimonial-card {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 26.5rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 26.5rem;
  flex: 0 0 26.5rem; /* 424px */
  background: white;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  padding-bottom: 2rem;
  scroll-snap-align: start;
  -webkit-transition: border-color 160ms ease, -webkit-box-shadow 160ms ease,
    -webkit-transform 160ms ease;
  transition: border-color 160ms ease, -webkit-box-shadow 160ms ease,
    -webkit-transform 160ms ease;
  -o-transition: box-shadow 160ms ease, border-color 160ms ease,
    -o-transform 160ms ease;
  -moz-transition: box-shadow 160ms ease, border-color 160ms ease,
    transform 160ms ease, -moz-box-shadow 160ms ease, -moz-transform 160ms ease;
  transition: box-shadow 160ms ease, border-color 160ms ease,
    transform 160ms ease;
  transition: box-shadow 160ms ease, border-color 160ms ease,
    transform 160ms ease, -webkit-box-shadow 160ms ease,
    -moz-box-shadow 160ms ease, -webkit-transform 160ms ease,
    -moz-transform 160ms ease, -o-transform 160ms ease;
}
.featuresPage-testimonial-card.is-active {
  border-color: transparent;
  -webkit-box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.1);
  -moz-box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.1);
  box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.1);
  -webkit-transform: translateY(-0.125rem);
  -moz-transform: translateY(-0.125rem);
  -ms-transform: translateY(-0.125rem);
  -o-transform: translateY(-0.125rem);
  transform: translateY(-0.125rem);
}
.featuresPage-testimonial-card__image {
  width: 100%;
  height: 19.5rem; /* ~312px */
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.featuresPage-testimonial-card__body {
  padding: 2rem 2rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
}
.featuresPage-testimonial-card__quote {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
}
.featuresPage-testimonial-card__name {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.featuresPage-dots {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.6rem;
}
.featuresPage-dot {
  border: 0;
  padding: 0;
  height: 0.4rem;
  width: 0.4rem;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
  background: rgba(13, 176, 200, 0.25);
  -webkit-transition: width 160ms ease, background-color 160ms ease;
  -o-transition: width 160ms ease, background-color 160ms ease;
  -moz-transition: width 160ms ease, background-color 160ms ease;
  transition: width 160ms ease, background-color 160ms ease;
  cursor: pointer;
}
.featuresPage-dot.is-active {
  width: 1.4rem;
  background: rgba(238, 145, 162, 0.8);
}

.slider-trusted {
  padding-bottom: clamp(3rem, 5vw, 6rem);
  overflow-x: hidden;
  overflow-x: clip;
}

.trusted-slider {
  width: min(92.5rem, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.trusted-slider__viewport {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.trusted-slider__mask {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 82.5rem;
  min-width: 0;
  margin: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.trusted-slider__track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0 2rem;
  will-change: transform;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
  -webkit-transition: -webkit-transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: -webkit-transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  -o-transition: -o-transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  -moz-transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    -moz-transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    -webkit-transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    -moz-transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    -o-transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  min-width: 0;
}

.trusted-slider__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 26.5rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 26.5rem;
  flex: 0 0 26.5rem; /* 424px */
  max-width: 100%;
}

.trusted-slider__card {
  width: 100%;
  height: auto;
  display: block;
}

.trusted-slider__nav {
  z-index: 4;
  width: 3rem;
  height: 3rem;
  border: 0;
  padding: 0;
  background: transparent;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  border-radius: 0.75rem;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: -webkit-transform 140ms ease;
  transition: -webkit-transform 140ms ease;
  -o-transition: -o-transform 140ms ease;
  -moz-transition: transform 140ms ease, -moz-transform 140ms ease;
  transition: transform 140ms ease;
  transition: transform 140ms ease, -webkit-transform 140ms ease,
    -moz-transform 140ms ease, -o-transform 140ms ease;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.trusted-slider__nav:hover {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  transform: scale(1.04);
}

.trusted-slider__nav:active {
  -webkit-transform: scale(0.98);
  -moz-transform: scale(0.98);
  -ms-transform: scale(0.98);
  -o-transform: scale(0.98);
  transform: scale(0.98);
}

.trusted-slider__nav:focus-visible {
  outline: none;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(13, 176, 200, 0.22);
  -moz-box-shadow: 0 0 0 0.2rem rgba(13, 176, 200, 0.22);
  box-shadow: 0 0 0 0.2rem rgba(13, 176, 200, 0.22);
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
}

.trusted-slider__nav img {
  width: 3rem;
  height: 3rem;
  display: block;
}

.trusted-slider__fade {
  position: absolute;
  top: 0;
  bottom: 2rem;
  width: 3.25rem;
  pointer-events: none;
  opacity: 0.92;
  z-index: 2;
}

.trusted-slider__fade--left {
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(rgba(255, 255, 255, 0))
  );
  background: -webkit-linear-gradient(
    left,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -moz-linear-gradient(
    left,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -o-linear-gradient(left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.trusted-slider__fade--right {
  right: 0;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#ffffff),
    to(rgba(255, 255, 255, 0))
  );
  background: -webkit-linear-gradient(
    right,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -moz-linear-gradient(
    right,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -o-linear-gradient(
    right,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.trusted-slider__dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
}
@media (max-width: 1024px) {
  /* px-24 pt-24 */
  .accordion-features-container {
    padding: 6rem 1rem 0 1rem !important;
  }
}
@media (min-width: 1024px) {
  /* px-24 pt-24 */
  .accordion-features-container {
    padding: 6rem 6rem 6rem 0 !important;
  }
}
@media (max-width: 1439px) {
}
@media (min-width: 1440px) {

}
@media (min-width: 1200px) {
  .leading-features-7xl {
    line-height: 5rem !important;
  }
  .leading-features-6xl {
    line-height: 4rem !important;
  }
  .leading-features-5xl {
    line-height: 3rem !important;
  }
}
@media (max-width: 56.25rem) {
  /* 900px */
  .trusted-slider__slide {
    -webkit-flex-basis: 21.5rem;
    -ms-flex-preferred-size: 21.5rem;
    flex-basis: 21.5rem;
  }
}

@media (max-width: 37.5rem) {
  /* 600px */
  .trusted-slider {
    padding: 0 1rem;
  }

  .trusted-slider__viewport {
    gap: 0.75rem;
  }

  .trusted-slider__nav {
    width: 2.75rem;
    height: 2.75rem;
  }

  .trusted-slider__nav img {
    width: 2.75rem;
    height: 2.75rem;
  }

  .trusted-slider__fade {
    width: 2.5rem;
  }

  .trusted-slider__slide {
    -webkit-flex-basis: 18.5rem;
    -ms-flex-preferred-size: 18.5rem;
    flex-basis: 18.5rem;
  }
}





/* -------------------------------------------------------------------------- */
/* Accordion: responsive fixes for 1200px- */
/* -------------------------------------------------------------------------- */
@media (max-width: 75rem) {
  /* 1200px */
  .featuresPage-accordion {
    width: 100%;
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -moz-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .featuresPage-accordion [data-accordion-item] {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Replace fixed 600px blocks with a max-width container */
  .featuresPage-accordionRule,
  .featuresPage-accordionContent {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  /* Expanded header row: stretch to full width so the close icon stays inside */
  .featuresPage-accordion [data-accordion-item].bg-primary-50 > .flex.flex-row {
    width: 100% !important;
  }

  /* Keep plus / close icon pinned to the right edge without changing layout spacing */
  .featuresPage-accordion [data-accordion-item].flex-row > .shrink-0.w-6.h-6 {
    margin-left: auto !important;
  }
  .featuresPage-accordion
    [data-accordion-item].bg-primary-50
    > .flex.flex-row
    > .shrink-0.w-6.h-6 {
    margin-left: auto !important;
  }

  /* Replace fixed title widths with flex sizing so it can shrink */
  .featuresPage-accordion .w-\\[552px\\] {
    width: auto !important;
    max-width: 100% !important;
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    -moz-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  /* Description + divider: allow full width without overflow */
  /* (w-[600px] removed from markup; use .featuresPage-accordionContent/.featuresPage-accordionRule) */
}

/* Accordion: default desktop width parity (keeps the old 600px look, but responsive) */
.featuresPage-accordionRule,
.featuresPage-accordionContent {
  width: 100%;
  max-width: 600px;
}
