.badge {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #111111;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 16px;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: default;
  transition: all 0.2s ease;
}
.badge:hover {
  transform: translateY(-1px);
}
.badge--primary {
  background-color: #0A5BD8;
  color: #FFFFFF;
  border-color: #084CC0;
}
.badge--primary:hover {
  background-color: #084CC0;
}
.badge--neutral {
  background-color: #F9FAFB;
  color: #2E2E2E;
  border-color: #E5E7EB;
}
.badge--neutral:hover {
  background-color: #E5E7EB;
  color: #FFFFFF;
}
.badge--success {
  background-color: rgba(22, 163, 74, 0.1);
  color: #16A34A;
  border-color: rgba(22, 163, 74, 0.3);
}
.badge--success:hover {
  background-color: rgba(22, 163, 74, 0.2);
}
.badge--warning {
  background-color: rgba(249, 115, 22, 0.1);
  color: #F97316;
  border-color: rgba(249, 115, 22, 0.3);
}
.badge--warning:hover {
  background-color: rgba(249, 115, 22, 0.2);
}
.badge--light {
  background-color: #FFFFFF;
  color: #2E2E2E;
  border-color: #F9FAFB;
}
.badge--light:hover {
  background-color: #F9FAFB;
}
.badge--dark {
  background-color: #2E2E2E;
  color: #FFFFFF;
  border-color: #2E2E2E;
}
.badge--dark:hover {
  background-color: #111111;
}
.badge--sm {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: inherit;
  padding: 4px 8px;
  border-radius: 12px;
}
.badge--lg {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: inherit;
  padding: 8px 16px;
  border-radius: 20px;
}
.badge--with-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
  background-color: currentColor;
}
@media (max-width: 768px) {
  .badge {
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: inherit;
    padding: 4px 10px;
  }
}

.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

form {
  text-align: center;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 40px 80px rgba(10, 91, 216, 0.08);
}
form *:not(.form-title) {
  text-align: left;
}
form .form-title {
  margin-bottom: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #0D0D0D;
}
form .steps {
  padding: 8px 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #2E2E2E;
  color: rgba(46, 46, 46, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 24px;
}
form .steps .step {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-direction: row;
  flex: 1;
  text-align: left;
}
form .steps .step > span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F97316;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 16px;
  margin-right: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}
form .checkmark-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 12px;
}
form .checkmark-wrapper input[type=checkbox] {
  display: none;
}
form .checkmark-wrapper input[type=checkbox]:checked + label::before {
  background-color: transparent;
}
form .checkmark-wrapper input[type=checkbox]:checked + label::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
form .checkmark-wrapper label {
  position: relative;
  padding-left: 26px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #2E2E2E;
  cursor: pointer;
}
form .checkmark-wrapper label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #808080;
  background-color: #FFFFFF;
  transition: all 0.2s ease;
}
form .checkmark-wrapper label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 5px;
  height: 9px;
  border: solid #2E2E2E;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0.5);
  opacity: 0;
  transition: all 0.2s ease;
}
form .checkmark-wrapper label .link {
  text-decoration: none;
  color: #0A5BD8;
  font-weight: 600;
}
form .checkmark-wrapper label .link:hover {
  text-decoration: underline;
}

.form-control {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #2E2E2E;
  padding: 12px 20px;
  background-color: #F9FAFB;
}
.form-control::placeholder {
  color: rgba(46, 46, 46, 0.6);
}
.form-control:focus {
  outline: none;
  border-color: #0A5BD8;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(10, 91, 216, 0.2);
}

.form-error {
  border: 1px solid #901616;
}

.btn, .btn-outline, .btn-white-primary, .btn-secondary, .btn-primary {
  font-size: 16px;
  line-height: 1;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}
.btn:focus, .btn-outline:focus, .btn-white-primary:focus, .btn-secondary:focus, .btn-primary:focus {
  outline: none;
}
.btn:active, .btn-outline:active, .btn-white-primary:active, .btn-secondary:active, .btn-primary:active {
  transform: translateY(0px);
}
.btn--icon {
  padding: 4px 4px 4px 24px;
}
.btn--icon .btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.btn:hover.btn--icon .btn-icon, .btn-outline:hover.btn--icon .btn-icon, .btn-white-primary:hover.btn--icon .btn-icon, .btn-secondary:hover.btn--icon .btn-icon, .btn-primary:hover.btn--icon .btn-icon {
  transform: rotate(45deg);
}

.btn-primary {
  background: #0A5BD8;
  color: #FFFFFF;
  border-color: #084CC0;
}
.btn-primary:hover {
  background: #084CC0;
  transform: translateY(-1px);
}
.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(10, 91, 216, 0.25);
}
.btn-primary.btn--icon .btn-icon {
  background: #FFFFFF;
  color: #0A5BD8;
}

.btn-secondary {
  background: #F97316;
  color: #FFFFFF;
  border-color: #EA6A0F;
}
.btn-secondary:hover {
  background: #EA6A0F;
  transform: translateY(-1px);
  border-color: #EA6A0F;
}
.btn-secondary:focus {
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}
.btn-secondary:active {
  background: #F97316;
}
.btn-secondary.btn--icon .btn-icon {
  background: #FFFFFF;
  color: #F97316;
}

.btn-white-primary {
  background: #FFFFFF;
  color: #0A5BD8;
  border-color: #084CC0;
}
.btn-white-primary:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
  color: #0A5BD8;
}
.btn-white-primary:focus {
  box-shadow: 0 0 0 3px rgba(10, 91, 216, 0.25);
}
.btn-white-primary.btn--icon .btn-icon {
  background: #0A5BD8;
  color: #FFFFFF;
}

.btn-outline {
  background: #FFFFFF;
  border-color: #E5E7EB;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn-outline:hover {
  background: #F9FAFB;
  border-color: #E5E7EB;
  transform: translateY(-1px);
}
.btn-outline:focus, .btn-outline:active {
  box-shadow: 0 0 0 3px rgba(10, 91, 216, 0.15);
  border-color: #E5E7EB !important;
}
.btn-outline.btn--icon .btn-icon {
  background: #0A5BD8;
  color: #FFFFFF;
}
.btn-outline.btn--icon .btn-icon svg path {
  fill: #FFFFFF;
}

.btn-link {
  font-weight: 500;
  background: transparent;
  border: none;
  color: #2E2E2E;
  padding: 0;
  text-decoration: none;
}
.btn-link svg {
  transition: all 0.3s ease;
}
.btn-link:hover {
  color: #111111;
}
.btn-link:hover svg {
  transform: translateX(3px);
}

.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.2s ease;
}
.header.fixed {
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.1);
}

.navbar {
  padding: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  margin-right: 20px;
}
.navbar-brand .logo-icon {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #0A5BD8;
}
.navbar-brand:hover {
  color: #111111;
}

.nav-link {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #2E2E2E;
  padding: 8px 16px !important;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: #111111 !important;
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus, .navbar-toggler.active {
  box-shadow: none;
  outline: none;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  height: 3px;
  background-color: #F97316;
  border-radius: 2px;
  position: relative;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}
.navbar-toggler .navbar-toggler-icon::before, .navbar-toggler .navbar-toggler-icon::after {
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #F97316;
  border-radius: 2px;
  opacity: 0;
}
.navbar-toggler .navbar-toggler-icon::after {
  top: 0;
  opacity: 1;
  transform: rotate(90deg);
}
.navbar-toggler.collapsed .navbar-toggler-icon {
  transform: rotate(0deg);
}
.navbar-toggler.collapsed .navbar-toggler-icon::before, .navbar-toggler.collapsed .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #F97316;
  border-radius: 2px;
  transform: rotate(0deg);
  opacity: 1;
}
.navbar-toggler.collapsed .navbar-toggler-icon::after {
  top: 9px;
  transform: rotate(0deg);
}

.main-footer {
  background: #F9FAFB;
  padding-top: 100px;
}
.main-footer .footer-top {
  padding-bottom: 36px;
}
.main-footer .footer-top .footer-brand img {
  width: 260px;
}
.main-footer .footer-top .footer-widget h3 {
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #0D0D0D;
  text-transform: uppercase;
}
.main-footer .footer-top .footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-footer .footer-top .footer-widget ul li {
  margin-bottom: 14px;
}
.main-footer .footer-top .footer-widget ul li a {
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #808080;
}
.main-footer .footer-top .footer-widget ul li a:hover {
  color: #F97316;
}
.main-footer .footer-top .footer-widget .footer-socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  margin-top: 28px;
}
.main-footer .footer-top .footer-widget .footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-decoration: none;
  background: #F97316;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #FFFFFF;
  font-size: 14px;
}
.main-footer .footer-top .footer-widget .footer-socials a:hover {
  background: #EA6A0F;
  transform: translateY(-2px);
}
.main-footer .footer-top .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid #E5E7EB;
}
.main-footer .footer-top .footer-bottom p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #0D0D0D;
}
.main-footer .footer-top .footer-bottom .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 24px;
}
.main-footer .footer-top .footer-bottom .footer-links a {
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #808080;
}
.main-footer .footer-top .footer-bottom .footer-links a:hover {
  color: #F97316;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #111111;
  background-color: #FFFFFF;
}

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

p {
  margin-bottom: 0;
}

.bg-gray {
  background: #F9FAFB;
}

.display-2xl {
  font-family: "Manrope", sans-serif;
  font-size: 72px;
  line-height: 90px;
  font-weight: 400;
  color: inherit;
}

.display-xl {
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  line-height: 72px;
  font-weight: 400;
  color: inherit;
}

.display-lg {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  color: inherit;
}

.display-md {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  color: inherit;
}

.display-sm {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
  color: inherit;
}

.display-xs {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: inherit;
}

.text-xl {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: inherit;
}

.text-lg {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: inherit;
}

.text-md {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: inherit;
}

.text-sm {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: inherit;
}

.text-xs {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: inherit;
}

.flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.flex-column {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.mt-64 {
  margin-top: 64px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 32px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mrt--70px {
  margin-top: -70px;
}

.mrt--100px {
  margin-top: -100px;
}

.fixed-header {
  padding-top: 80px;
}

.min-h-326px {
  min-height: 326px;
}

.icon-bx {
  background-color: #F97316;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-bx.icon-bx--primary {
  background-color: #0A5BD8;
}
.icon-bx.icon-bx--white-primary {
  background-color: #FFFFFF;
}

.section-header {
  margin-bottom: 30px;
}
.section-header .header-content {
  max-width: 500px;
}
.section-header .header-content .section-subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #F97316;
  margin-bottom: 16px;
  display: inline-block;
  text-transform: uppercase;
}
.section-header .header-content .section-title {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 0;
}
.section-header .header-content .section-description {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #111111;
  color: rgba(46, 46, 46, 0.8);
  max-width: 425px;
  margin-left: auto;
}

.nav-arrows {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 28px;
  margin-top: 32px;
}
.nav-arrows .button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 48px;
  height: 48px;
  padding: 16px;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.nav-arrows .button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.nav-arrows .button:hover:not(.swiper-button-disabled) {
  border-color: #F97316;
  background-color: #F97316;
}
.nav-arrows .button:hover:not(.swiper-button-disabled) svg {
  stroke: #FFFFFF;
}
.nav-arrows .button:hover:not(.swiper-button-disabled) svg path {
  stroke: #FFFFFF;
}
.nav-arrows .button.swiper-button-disabled {
  opacity: 0.5;
}
.nav-arrows .button.swiper-button-disabled:hover {
  border-color: #E5E7EB;
  background-color: #E5E7EB;
}
.nav-arrows .button.swiper-button-disabled:hover svg {
  stroke: #FFFFFF;
}
.nav-arrows .button.swiper-button-disabled:hover svg path {
  stroke: #FFFFFF;
}

.case-study-card .card-image-wrapper {
  position: relative;
}
.case-study-card .card-image-wrapper .case-study-image {
  border-radius: 4px;
  overflow: hidden;
}
.case-study-card .card-image-wrapper .case-study-image img {
  border-radius: 4px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
}
.case-study-card .card-image-wrapper .onimage-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 11;
  padding: 20px;
}
.case-study-card .card-image-wrapper .onimage-text .counter-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-study-card .card-image-wrapper .onimage-text .counter-wrapper .counter-bx {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #FFFFFF;
}
.case-study-card .card-image-wrapper .onimage-text .counter-wrapper .counter-bx .current {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #FFFFFF;
}
.case-study-card .card-image-wrapper .onimage-text .play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-study-card .card-image-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.case-study-card .case-study-content {
  padding: 20px 0;
}
.case-study-card .case-study-content .case-study-title {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #2E2E2E;
  margin-bottom: 16px;
  color: rgba(46, 46, 46, 0.8);
}
.case-study-card .case-study-content .seperator {
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid #E5E7EB;
  margin: 8px 0;
}
.case-study-card .case-study-content .information {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #111111;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.features-grid .feature-check-wrapper {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.features-grid .feature-check-wrapper .feature-check-input {
  display: none;
}
.features-grid .feature-check-wrapper:has(.custom-checkbox:checked) .feature-check-input {
  display: block;
}
.features-grid .feature-check-wrapper .feature-check-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
  gap: 10px;
  font-size: 14px;
  color: #2E2E2E;
  user-select: none;
  position: relative;
}
.features-grid .feature-check-wrapper .feature-check-item .custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.features-grid .feature-check-wrapper .feature-check-item .custom-checkbox:checked + .check-icon {
  background: #F97316;
  border-color: #F97316;
}
.features-grid .feature-check-wrapper .feature-check-item .custom-checkbox:checked + .check-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.features-grid .feature-check-wrapper .feature-check-item .check-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #F97316;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.stats-section {
  padding: 40px 0 20px;
}
.stats-section .section-header .header-content {
  max-width: none;
}
.stats-section .section-header .header-content .section-description {
  margin-top: 24px;
  max-width: none;
}
.stats-section .stats-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}
.stats-section .stats-wrapper .stat-item {
  flex: 1;
  text-align: center;
  position: relative;
  container-type: inline-size;
  padding: 0 30px;
}
.stats-section .stats-wrapper .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: #E5E7EB;
}
.stats-section .stats-wrapper .stat-item h3 {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  line-height: 58px;
  font-weight: 500;
  color: #F97316;
  margin-bottom: 8px;
}
@container (max-width: 250px) {
  .stats-section .stats-wrapper .stat-item h3 {
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    color: #F97316;
  }
}
@container (min-width: 250px) and (max-width: 400px) {
  .stats-section .stats-wrapper .stat-item h3 {
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    line-height: 44px;
    font-weight: 500;
    color: #F97316;
  }
}
.stats-section .stats-wrapper .stat-item p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #2E2E2E;
  color: rgba(46, 46, 46, 0.8);
  margin: 0;
}

.mission-section {
  padding: 60px 0;
}
.mission-section .section-header .header-content {
  max-width: 668px;
  margin: 0 auto;
  text-align: center;
}
.mission-section .section-header .header-content .section-description {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #2E2E2E;
  font-size: 28px;
  line-height: 36px;
}

.we-stand-section .feature-card .feature-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.we-stand-section .feature-card .feature-content .feature-desc {
  margin-top: auto;
}
.we-stand-section .testimonials-section {
  background-color: #F9FAFB;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
}
.we-stand-section .testimonials-section .user-image {
  background-color: #FFFFFF;
}
.we-stand-section .testimonials-section .user-image > img {
  object-position: center 8%;
  height: 350px;
  object-fit: none;
  width: 100%;
}
.we-stand-section .testimonials-section .testimonial-card {
  border: none;
  padding-inline-start: 0;
}

/* extra scss/css */
.error {
  border-color: red !important;
}

.error-message {
  color: red;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

#gotostep4 {
  position: relative;
}

.btn-loader {
  width: 36px;
  height: 36px;
  border: 2px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: buttonSpin 0.7s linear infinite;
  background-color: transparent;
}

#gotostep4.loading .btn-loader {
  display: inline-block;
}

#gotostep4.loading .btn-icon {
  display: none;
}

@keyframes buttonSpin {
  to {
    transform: rotate(360deg);
  }
}
/* Popup Background */
.video-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* Popup Content */
.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  margin: 5% auto;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
}

iframe {
  width: 100%;
  height: 500px;
  border: none;
}

@media (max-width: 768px) {
  iframe {
    height: 300px;
  }
}
.hero {
  padding: 36px 0 0;
  position: relative;
  background: linear-gradient(110deg, #eef5ff 0%, #ffffff 50%, #fff5ee 100%);
  overflow: hidden;
}
.hero .hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.hero .hero-content .hero-subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 48px;
  border: 0.5px solid rgba(46, 46, 46, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 35%, #ececec 100%);
  box-shadow: 0 1px 2px rgba(255, 255, 255, 0.9) inset, 0 -1px 1px rgba(0, 0, 0, 0.04) inset, 0 2px 6px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  text-transform: capitalize;
  backdrop-filter: blur(6px);
}
.hero .hero-content .hero-title {
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  line-height: 72px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 24px;
}
.hero .hero-content .hero-description {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #111111;
  color: rgba(46, 46, 46, 0.8);
  margin-bottom: 40px;
}
.hero .hero-content .hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero .hero-image {
  text-align: center;
}
.hero .hero-image > img {
  max-width: 100%;
  height: auto;
  width: 100%;
}
.hero.half-section {
  position: relative;
  padding: 40px 0;
}
.hero.half-section .hero-content {
  text-align: left;
  padding: 36px;
  padding-left: 0;
}
.hero.half-section .hero-content .hero-buttons {
  justify-content: flex-start;
}
.hero.half-section .hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  margin-bottom: 0;
}
.hero.half-section .hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners-logos {
  padding: 30px 0;
}

.wrap-partners .logo-item {
  padding: 0 2rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 250px;
  height: 100px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 40px;
}
.wrap-partners .logo-item:hover {
  border-color: #0A5BD8;
}
.wrap-partners .logo-item:hover > img {
  filter: grayscale(0);
  opacity: 1;
}
.wrap-partners .logo-item img {
  opacity: 0.5;
  height: 70px;
  width: auto;
  transition: all 0.2s ease;
  object-fit: contain;
}
.wrap-partners:hover .logo-item:not(:hover) {
  filter: brightness(0.9) saturate(0) contrast(1.2) blur(2px);
}

.pillars-section {
  padding-bottom: 136px;
}
.pillars-section .pillars-grid .pillar-box {
  background-color: #F9FAFB;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.2s ease;
}
.pillars-section .pillars-grid .pillar-box .box-header {
  padding: 20px;
}
.pillars-section .pillars-grid .pillar-box .box-header .icon-bx {
  margin-bottom: 20px;
}
.pillars-section .pillars-grid .pillar-box .box-header h3 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 16px;
}
.pillars-section .pillars-grid .pillar-box .box-footer {
  padding: 20px;
  margin-top: auto;
}
.pillars-section .pillars-grid .pillar-box .box-footer p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #111111;
  color: rgba(46, 46, 46, 0.8);
  margin-bottom: 12px;
}
.pillars-section .pillars-grid .pillar-box:hover {
  box-shadow: 0 40px 80px rgba(10, 91, 216, 0.08);
}

.feature-section {
  padding: 80px 0;
  background: #FFFFFF;
}
.feature-section .feature-card {
  overflow: hidden;
  background-color: #0A5BD8;
  border-radius: 4px;
  position: relative;
  height: 100%;
}
.feature-section .feature-card .bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
}
.feature-section .feature-card .bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0A5BD8 0%, rgba(10, 91, 216, 0.8) 70%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.feature-section .feature-card .bg-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-section .feature-card .bg-image ~ .feature-content {
  max-width: 49%;
}
.feature-section .feature-card .bg-image ~ .feature-content > * {
  position: relative;
  z-index: 2;
}
.feature-section .feature-card:not(:last-child) {
  margin-bottom: 60px;
}
.feature-section .feature-card .feature-content {
  color: #FFFFFF;
  padding: 20px;
}
.feature-section .feature-card .feature-content .feature-tag {
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
  justify-content: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #FFFFFF;
  padding: 8px 14px;
  margin-bottom: 32px;
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), inset 0 -1px 1px rgba(255, 255, 255, 0.05), 0 4px 12px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
.feature-section .feature-card .feature-content h2 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 18px;
}
.feature-section .feature-card .feature-content .feature-desc {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 22px;
}
.feature-section .feature-card .feature-content .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.feature-section .feature-card .feature-content .feature-list li {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #FFFFFF;
  padding-left: 16px;
  margin-bottom: 14px;
}
.feature-section .feature-card .feature-content .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: #FFFFFF;
  border-radius: 50%;
}
.feature-section .feature-card .feature-content .feature-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #0A5BD8;
  text-decoration: none;
  border-radius: 40px;
  padding: 10px 10px 10px 24px;
}
.feature-section .feature-card .feature-content .feature-btn span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0A5BD8;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
}
.feature-section .feature-card .feature-content .feature-btn:hover {
  background: #f1f6ff;
}
.feature-section .feature-card .feature-content .feature-btn:hover span {
  transform: translateX(3px);
}
.feature-section .feature-card .feature-image {
  background: #ffffff;
  overflow: hidden;
  border-radius: 4px;
}
.feature-section .feature-card .feature-image img {
  width: 100%;
  display: block;
}

.how-it-works {
  padding: 80px 0;
  background: #0A5BD8;
}
.how-it-works .feature-card {
  overflow: hidden;
}
.how-it-works .feature-card:not(:last-child) {
  margin-bottom: 60px;
}
.how-it-works .feature-card .feature-content {
  color: #ffffff;
  border-bottom: 1px solid #F9FAFB;
  padding: 33px 0;
}
.how-it-works .feature-card .feature-content .feature-tag {
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
  justify-content: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #FFFFFF;
  padding: 8px 14px;
  margin-bottom: 32px;
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), inset 0 -1px 1px rgba(255, 255, 255, 0.05), 0 4px 12px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
.how-it-works .feature-card .feature-content h2 {
  font-size: 42px;
  line-height: 1.12;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 18px;
  max-width: 430px;
}
.how-it-works .feature-card .feature-content .feature-desc {
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 22px;
  max-width: 390px;
}
.how-it-works .feature-card .feature-content .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
}
.how-it-works .feature-card .feature-content .feature-list li {
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
  padding-left: 16px;
  margin-bottom: 14px;
}
.how-it-works .feature-card .feature-content .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
}
.how-it-works .feature-card .feature-content .feature-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  color: #0f58c9;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 40px;
  padding: 10px 10px 10px 24px;
}
.how-it-works .feature-card .feature-content .feature-btn span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f58c9;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
}
.how-it-works .feature-card .feature-content .feature-btn:hover {
  background: #f1f6ff;
}
.how-it-works .feature-card .feature-content .feature-btn:hover span {
  transform: translateX(3px);
}
.how-it-works .feature-card .feature-image {
  background: #ffffff;
  overflow: hidden;
  border-radius: 4px;
  height: 520px;
  max-width: 583px;
  margin-left: auto;
}
.how-it-works .feature-card .feature-image img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.case-studies-section {
  padding: 160px 0 80px;
  position: relative;
}
.case-studies-section .cta-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
.case-studies-section .nav-arrows {
  margin-top: 0;
}
.case-studies-section .swiper-wrapper .swiper-slide .case-study-card {
  cursor: grab;
}

.faq-section {
  padding: 90px 0;
  background: #FFFFFF;
  font-family: "Manrope", sans-serif;
}
.faq-section .faq-heading span {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #F97316;
  margin-bottom: 14px;
}
.faq-section .faq-heading h2 {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
  color: #111111;
  margin: 0;
}
.faq-section .faq-accordion {
  border-top: 1px solid #E5E7EB;
}
.faq-section .faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #E5E7EB;
  background: transparent;
  border-radius: 0;
}
.faq-section .faq-accordion .accordion-item .accordion-header {
  margin: 0;
}
.faq-section .faq-accordion .accordion-item .accordion-button {
  position: relative;
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 24px 54px 14px 0;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #111111;
}
.faq-section .faq-accordion .accordion-item .accordion-button::after {
  display: none;
}
.faq-section .faq-accordion .accordion-item .accordion-button::before {
  content: "";
  position: absolute;
  right: 0;
  top: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #F97316;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 12H5M5 12L12 19M5 12L12 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: all 0.3s ease;
  transform: rotate(-90deg);
}
.faq-section .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  padding-bottom: 8px;
}
.faq-section .faq-accordion .accordion-item .accordion-button:not(.collapsed)::before {
  transform: rotate(90deg);
}
.faq-section .faq-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-item .accordion-body {
  padding: 0 54px 24px 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #2E2E2E;
  color: rgba(46, 46, 46, 0.8);
}
.faq-section .faq-accordion .accordion-item .accordion-body ul {
  padding-left: 20px;
  margin: 10px 0;
}
.faq-section .faq-accordion .accordion-item .accordion-body ul li {
  margin-bottom: 3px;
}

.cta-section {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  z-index: 2;
  background-color: #F9FAFB;
}
.cta-section.with-form .cta-card {
  padding: 0;
  box-shadow: none;
  background-color: transparent;
}
.cta-section .cta-card {
  background: #FFFFFF;
  padding: 60px 85px;
  box-shadow: 0 40px 80px rgba(10, 91, 216, 0.08);
}
.cta-section .cta-card .cta-content .section-label {
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #F97316;
}
.cta-section .cta-card .cta-content h2 {
  max-width: 500px;
  margin-bottom: 22px;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  color: #111111;
}
.cta-section .cta-card .cta-content p {
  max-width: 360px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #2E2E2E;
  color: rgba(46, 46, 46, 0.8);
}
.cta-section .cta-card .cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}
.cta-section .cta-card .cta-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #2E2E2E;
  color: rgba(46, 46, 46, 0.8);
}
.cta-section .cta-card .cta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(46, 46, 46, 0.8);
}
.cta-section .cta-card .cta-action-area p {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #2E2E2E;
  color: rgba(46, 46, 46, 0.8);
  margin-bottom: 33px;
}
.cta-section .cta-card .cta-action-area .cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 16px;
  width: fit-content;
  text-decoration: none;
  background: #F97316;
  padding: 10px 10px 10px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #FFFFFF;
}
.cta-section .cta-card .cta-action-area .cta-btn span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #F97316;
  font-size: 12px;
  transition: all 0.3s ease;
}
.cta-section .cta-card .cta-action-area .cta-btn:hover {
  background: #EA6A0F;
}
.cta-section .cta-card .cta-action-area .cta-btn:hover span {
  transform: translateX(3px);
}

.booking-flow {
  padding: 80px 0;
  background-color: #F9FAFB;
  background: linear-gradient(110deg, #eef5ff 0%, #ffffff 50%, #fff5ee 100%);
}
.booking-flow h1 {
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  line-height: 72px;
  font-weight: 500;
  color: #111111;
  max-width: 754px;
  margin: 0 auto 56px;
  text-align: center;
}
.booking-flow form {
  padding: 36px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 10px -4px rgba(0, 117, 255, 0.12), 0 4px 20px -10px rgba(0, 117, 255, 0.08);
}
.booking-flow form .form-title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 24px;
}
.booking-flow form .steps {
  margin-bottom: 32px;
}
.booking-flow form .features-grid-wrapper {
  margin-top: 12px;
  margin-bottom: 40px;
}
.booking-flow form .features-grid-wrapper > .form-label {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #2E2E2E;
  margin-bottom: 24px;
}
.booking-flow form .checkmark-wrapper label {
  padding-left: 30px;
}
.booking-flow form .checkmark-wrapper label::before {
  width: 20px;
  height: 20px;
  border-width: 2px;
  top: 2px;
}
.booking-flow form .checkmark-wrapper label::after {
  left: 7px;
  top: 6px;
  width: 6px;
  height: 10px;
}
.booking-flow .thankyou-block {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  padding: 40px;
}
.booking-flow .thankyou-block .box-inside {
  max-width: 500px;
}
.booking-flow .thankyou-block h2 {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 20px;
}
.booking-flow .thankyou-block p {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #111111;
  color: rgba(46, 46, 46, 0.8);
  margin-bottom: 32px;
}

.leads-section {
  padding: 100px 0 120px;
}
.leads-section .leads-timeline .timeline-item:not(:last-child) {
  position: relative;
}
.leads-section .leads-timeline .timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 40px;
  width: 2px;
  height: 100%;
  background-color: #F97316;
}
.leads-section .leads-timeline .timeline-item:not(:last-child) .timeline-inner {
  padding-bottom: 64px;
}
.leads-section .leads-timeline .timeline-item .timeline-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.leads-section .leads-timeline .timeline-item .timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.leads-section .leads-timeline .timeline-item .timeline-content {
  max-width: 424px;
}
.leads-section .leads-timeline .timeline-item .timeline-content h3 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 16px;
}
.leads-section .leads-timeline .timeline-item .timeline-content p {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #111111;
}
.leads-section .leads-timeline .timeline-item .timeline-list {
  margin-top: 12px;
  max-width: 425px;
  margin-left: auto;
}
.leads-section .leads-timeline .timeline-item .timeline-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.leads-section .leads-timeline .timeline-item .timeline-list ul li {
  position: relative;
  padding: 8px 0;
  padding-left: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #2E2E2E;
  color: rgba(46, 46, 46, 0.8);
}
.leads-section .leads-timeline .timeline-item .timeline-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(46, 46, 46, 0.8);
}

.use-cases-section {
  background-color: #0A5BD8;
  padding: 80px 0;
}
.use-cases-section .section-header .header-content .section-subtitle {
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
  justify-content: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #FFFFFF;
  padding: 8px 14px;
  margin-bottom: 32px;
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), inset 0 -1px 1px rgba(255, 255, 255, 0.05), 0 4px 12px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
.use-cases-section .section-header .header-content .section-title {
  color: #FFFFFF;
}
.use-cases-section .section-header .header-content .section-description {
  color: #FFFFFF;
}
.use-cases-section .use-case-grid .use-case-box {
  background-color: #F9FAFB;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.2s ease;
}
.use-cases-section .use-case-grid .use-case-box:hover {
  box-shadow: 0 40px 80px rgba(10, 91, 216, 0.08);
}
.use-cases-section .use-case-grid .use-case-box .box-header {
  padding: 20px;
}
.use-cases-section .use-case-grid .use-case-box .box-header .box-image {
  height: auto;
  margin-bottom: 24px;
}
.use-cases-section .use-case-grid .use-case-box .box-header .box-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.use-cases-section .use-case-grid .use-case-box .box-header .icon-bx {
  margin-bottom: 20px;
}
.use-cases-section .use-case-grid .use-case-box .box-header h3 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 16px;
}
.use-cases-section .use-case-grid .use-case-box .box-header p {
  margin-bottom: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111111;
  color: rgba(46, 46, 46, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.use-cases-section .use-case-grid .use-case-box .box-footer {
  padding: 20px;
  margin-top: auto;
}
.use-cases-section .use-case-grid .use-case-box .box-footer p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #111111;
  color: rgba(46, 46, 46, 0.8);
  margin-bottom: 12px;
}
.use-cases-section .use-case-grid .use-case-box .box-footer .leads-count {
  font-size: 28px;
  line-height: 1;
  color: #F97316;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 6px;
}
.use-cases-section .use-case-grid .use-case-box .box-footer .leads-text {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111111;
  color: rgba(46, 46, 46, 0.8);
}
.use-cases-section .use-case-grid .use-case-box:hover {
  box-shadow: 0 40px 80px rgba(10, 91, 216, 0.08);
}

.testimonials-section {
  padding: 120px 0;
  position: relative;
}
.testimonials-section .testimonial-card {
  padding: 25.5px 20px;
  background-color: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.testimonials-section .testimonial-card.highlighted {
  background-color: #F9FAFB;
  padding-block: 50px;
  height: 100%;
}
.testimonials-section .testimonial-card.highlighted .testimonial-content {
  margin-bottom: 24px;
}
.testimonials-section .testimonial-card.highlighted .testimonial-content .quotation-mark {
  display: inline-block;
  margin-bottom: 24px;
}
.testimonials-section .testimonial-card.highlighted .testimonial-content p {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #111111;
}
.testimonials-section .testimonial-card .testimonial-content {
  margin-bottom: 18px;
}
.testimonials-section .testimonial-card .testimonial-content p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111111;
}
.testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials-section .testimonial-card .testimonial-author .author-info {
  flex: 1;
}
.testimonials-section .testimonial-card .testimonial-author .author-info .author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonials-section .testimonial-card .testimonial-author .author-info .author-name {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 8px;
}
.testimonials-section .testimonial-card .testimonial-author .author-info .author-title {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #111111;
  color: rgba(46, 46, 46, 0.8);
}
.testimonials-section .testimonial-card .testimonial-author .stars {
  display: flex;
  gap: 12px;
}
.testimonials-section .testimonial-card .testimonial-author .stars svg path {
  fill: #FDC913;
}

.pricing-section {
  padding: 30px 0 36px;
}
.pricing-section .pricing-toggle {
  width: fit-content;
  margin: 0 auto 44px;
  padding: 4px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 48px;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.pricing-section .pricing-toggle .nav-item .nav-link {
  border: 0;
  border-radius: 40px;
  padding: 8px 16px;
  background: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #111111;
}
.pricing-section .pricing-toggle .nav-item .nav-link .discount {
  color: #0A5BD8 !important;
  margin-left: 4px;
}
.pricing-section .pricing-toggle .nav-item .nav-link.active {
  background: #0A5BD8;
  color: #FFFFFF !important;
}
.pricing-section .pricing-toggle .nav-item .nav-link.active .discount {
  color: #FFFFFF !important;
}
.pricing-section .pricing-toggle .nav-item .nav-link.active:hover {
  color: #FFFFFF !important;
}
.pricing-section .pricing-card {
  background: #FFFFFF;
  padding: 20px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  height: 100%;
}
.pricing-section .pricing-card .pricing-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: inherit;
  flex-direction: column;
  position: relative;
}
.pricing-section .pricing-card .pricing-header h3 {
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #111111;
}
.pricing-section .pricing-card .pricing-header p {
  margin-bottom: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111111;
}
.pricing-section .pricing-card .pricing-header .badge {
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
  justify-content: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #F97316;
  padding: 8px 14px;
  margin-bottom: 32px;
  border-radius: 48px;
  border: 1px solid rgba(249, 115, 22, 0.3019607843);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 115, 22, 0.04) 100%);
  box-shadow: inset 0 1px 1px rgba(255, 243, 236, 0.9), 0 2px 6px rgba(249, 115, 22, 0.08);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
}
.pricing-section .pricing-card .pricing-price {
  margin-bottom: 20px;
}
.pricing-section .pricing-card .pricing-price h2 {
  margin-bottom: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  color: #111111;
}
.pricing-section .pricing-card .pricing-price h2 span {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111111;
}
.pricing-section .pricing-card .pricing-price p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111111;
  color: rgba(46, 46, 46, 0.8);
}
.pricing-section .pricing-card .pricing-btn {
  width: 100%;
  max-width: 240px;
  padding: 12px 20px;
  margin-bottom: 32px;
  border-radius: 48px;
  background: #F97316;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #FFFFFF;
}
.pricing-section .pricing-card .pricing-btn span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #F97316;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.pricing-section .pricing-card .pricing-features {
  padding: 24px 0 0;
  margin: 40px 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  list-style-position: inside;
}
.pricing-section .pricing-card .pricing-features li {
  padding: 8px 8px 8px 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111111;
}
.pricing-section .pricing-card .pricing-features li:last-child {
  margin-bottom: 0;
}
.pricing-section .pricing-card.popular {
  border-color: #F97316;
}
@media (max-width: 991px) {
  .pricing-section .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .pricing-section {
    padding: 56px 0;
  }
  .pricing-section .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-section .pricing-card .pricing-btn {
    max-width: 100%;
  }
}

.comparison-section {
  padding: 80px 0;
  background: #FFFFFF;
}
.comparison-section .comparison-table-wrapper {
  overflow-x: auto;
}
.comparison-section .comparison-table {
  width: 100%;
  min-width: 760px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}
.comparison-section .comparison-table th,
.comparison-section .comparison-table td {
  border: 0;
  padding: 10px 18px;
  vertical-align: middle;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111111;
}
.comparison-section .comparison-table thead {
  position: sticky;
  top: 0;
}
.comparison-section .comparison-table thead th {
  text-align: center;
  padding-top: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.comparison-section .comparison-table thead th:first-child {
  width: 260px;
  border-right: 1px solid rgba(17, 17, 17, 0.06);
}
.comparison-section .comparison-table thead th .plan-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.comparison-section .comparison-table thead th .plan-header h4 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #111111;
}
.comparison-section .comparison-table thead th .plan-header .table-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #FFFFFF;
  gap: 8px;
  width: fit-content;
  padding: 7px 8px 7px 14px;
  border-radius: 48px;
  background: #F97316;
  color: #FFFFFF;
  text-decoration: none;
}
.comparison-section .comparison-table thead th .plan-header .table-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #F97316;
  font-size: 14px;
  line-height: 1;
}
.comparison-section .comparison-table tbody tr td {
  text-align: center;
}
.comparison-section .comparison-table tbody tr td:first-child {
  text-align: left;
  border-right: 1px solid rgba(17, 17, 17, 0.06);
}
.comparison-section .comparison-table tbody tr td:not(:first-child) {
  color: #0A5BD8;
}
.comparison-section .comparison-table tbody tr.category-row td {
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}
.comparison-section .comparison-table tbody tr.category-row td:first-child {
  text-transform: uppercase;
  min-width: 280px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #084CC0;
}
.comparison-section .comparison-table .highlight-plan {
  background: #F9FAFB;
  border-left: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
  border-inline: 1px solid #E5E7EB;
}
@media (max-width: 767px) {
  .comparison-section {
    padding: 56px 0;
  }
  .comparison-section .comparison-table th,
  .comparison-section .comparison-table td {
    padding: 10px 14px;
  }
}

@media screen and (max-width: 1199px) {
  .leads-section .leads-timeline .timeline-item .timeline-list {
    max-width: 376px;
  }
  .hero .hero-content .hero-title {
    font-size: 48px;
  }
  .section-header .header-content .section-title {
    font-size: 32px;
    line-height: 40px;
  }
  .how-it-works .feature-card .feature-content h2 {
    font-size: 32px;
  }
  .case-studies-section .case-study-card .case-study-content .information {
    font-size: 20px;
  }
  .booking-flow h1 {
    font-size: 48px;
    line-height: 56px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .how-it-works .feature-card .feature-image {
    height: auto;
  }
  .header .navbar .auth-buttons .book-now-btn {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .faq-section {
    padding: 70px 0;
  }
  .faq-section .faq-heading {
    margin-bottom: 36px;
  }
  .faq-section .faq-heading h2 {
    font-size: 36px;
  }
  .faq-section .faq-heading h2 br {
    display: none;
  }
  .faq-section .faq-accordion .accordion-item .accordion-button {
    font-size: 20px;
  }
  .leads-section .leads-timeline .timeline-item {
    padding-bottom: 40px;
  }
  .leads-section .leads-timeline .timeline-item .timeline-list {
    max-width: 100%;
    padding-left: 64px;
  }
  .leads-section .leads-timeline .timeline-item .timeline-inner {
    padding-bottom: 0 !important;
  }
  .use-cases-section .section-header .header-content {
    margin-bottom: 32px;
  }
  .hero.half-section {
    padding-bottom: 0;
  }
  .hero.half-section .hero-image {
    position: static;
    width: 100%;
    height: 515px;
  }
  .navbar-collapse {
    padding: 20px 0;
    background-color: #FFFFFF;
  }
  .navbar-collapse .nav-link {
    padding-inline: 0 !important;
  }
  .section-header .header-content .section-title br {
    display: none;
  }
  .case-studies-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .case-studies-section .cta-buttons {
    justify-content: flex-start;
    margin-top: 20px;
  }
  .case-studies-section .cta-buttons .nav-arrows {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
  }
  .main-footer {
    padding-top: 40px;
  }
  .main-footer .footer-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }
  .main-footer .footer-top .footer-brand img {
    width: 220px;
  }
  .section-header .header-content .section-description {
    max-width: 100%;
    margin-top: 16px;
  }
  .booking-flow h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .testimonials-section .cta-buttons .nav-arrows {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    z-index: 11;
  }
  .header .navbar .navbar-collapse {
    z-index: 1050;
  }
  .header .navbar .navbar-collapse .navbar-nav {
    border-top: 1px solid #E5E7EB;
  }
  .header .navbar .navbar-collapse.show + .menu-overlay,
  .header .navbar .navbar-collapse.show ~ .menu-overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .header .navbar .nav-link {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    padding-block: 24px !important;
    border-bottom: 1px solid #E5E7EB;
  }
  .header .navbar .auth-buttons {
    margin-top: 36px !important;
    text-align: center;
  }
  .header .navbar .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    pointer-events: none;
  }
  .feature-section .feature-card .bg-image {
    display: none;
  }
  .feature-section .feature-card .bg-image ~ .feature-content {
    max-width: 100%;
  }
  .cta-section {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .cta-section .cta-card {
    padding: 42px 32px;
  }
  .cta-section .cta-card .cta-action-area {
    text-align: center;
  }
  .cta-section .cta-card .cta-action-area .cta-list {
    text-align: left;
  }
  .cta-section .cta-card .cta-action-area p {
    text-align: left;
    margin-bottom: 28px;
  }
  .cta-section .cta-card .cta-content {
    margin-bottom: 20px;
    margin-bottom: 40px;
  }
  .cta-section .cta-card .cta-content h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .cta-section .cta-card .cta-content p {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #2E2E2E;
  }
  .how-it-works .feature-card .feature-image {
    margin-left: 0;
    height: auto;
  }
  .hero.half-section .hero-content {
    padding: 0 0 52px;
    text-align: center;
  }
  .hero.half-section .hero-content .hero-buttons {
    justify-content: center;
  }
  .testimonials-section {
    padding: 60px 0 120px;
  }
  .we-stand-section .testimonials-section .testimonial-card {
    padding-inline-start: 20px;
  }
  .mission-section {
    padding: 0;
  }
  .mission-section .section-header .header-content {
    text-align: left;
  }
  .mission-section .section-header .header-content .section-description {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .pricing-hero .hero-content .hero-description {
    margin-bottom: 32px;
  }
  .comparison-section {
    padding: 56px 0;
  }
  .comparison-section .comparison-table-wrapper {
    overflow-x: hidden;
  }
  .comparison-section .comparison-table {
    min-width: 100%;
    width: 100%;
    background: transparent;
  }
  .comparison-section .comparison-table thead tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 0;
  }
  .comparison-section .comparison-table thead th {
    display: block;
    padding: 0 0 20px;
    border: 0;
    text-align: center;
    background: transparent;
  }
  .comparison-section .comparison-table thead th:first-child {
    display: none;
  }
  .comparison-section .comparison-table thead th .plan-header h4 {
    margin: 0;
  }
  .comparison-section .comparison-table thead th .plan-header .btn, .comparison-section .comparison-table thead th .plan-header .btn-primary, .comparison-section .comparison-table thead th .plan-header .btn-secondary, .comparison-section .comparison-table thead th .plan-header .btn-white-primary, .comparison-section .comparison-table thead th .plan-header .btn-outline {
    display: none;
  }
  .comparison-section .comparison-table tbody {
    display: block;
  }
  .comparison-section .comparison-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: transparent;
  }
  .comparison-section .comparison-table tbody tr td {
    display: block;
    padding: 0 0 20px;
    border: 0;
    text-align: center;
  }
  .comparison-section .comparison-table tbody tr td .text-muted {
    color: #111111 !important;
  }
  .comparison-section .comparison-table tbody tr td:first-child {
    grid-column: 1/-1;
    text-align: left;
    padding-top: 0;
    padding-bottom: 12px;
    border-right: 0;
  }
  .comparison-section .comparison-table tbody tr td:not(:first-child) {
    color: #0A5BD8;
  }
  .comparison-section .comparison-table tbody tr.category-row {
    padding-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }
  .comparison-section .comparison-table tbody tr.category-row td {
    padding: 0 0 10px;
  }
  .comparison-section .comparison-table tbody tr.category-row td:first-child {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .comparison-section .comparison-table tbody tr.category-row td:not(:first-child) {
    display: none;
  }
  .comparison-section .comparison-table .highlight-plan {
    background: transparent;
    border: none;
  }
  .use-cases-section .use-case-grid .use-case-box .box-header .box-image {
    height: auto;
  }
  .use-cases-section .use-case-grid .use-case-box .box-header .box-image > img {
    object-fit: contain;
  }
  .main-footer .footer-top .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-footer .footer-top .footer-bottom .footer-links {
    margin-top: 26px;
  }
  .use-cases-section .section-header .header-content .section-subtitle {
    font-size: 14px;
    line-height: 20px;
  }
  .stats-section .section-header {
    text-align: left !important;
  }
  .stats-section .stats-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    align-items: normal;
  }
  .stats-section .stats-wrapper .stat-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 10px;
  }
  .stats-section .stats-wrapper .stat-item:not(:last-child)::after {
    position: absolute;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 320px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
  }
  .stats-section .stats-wrapper.style2 .stat-item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 20px 10px;
  }
  .stats-section .stats-wrapper.style2 .stat-item:not(:last-child)::after {
    position: absolute;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
    height: 1px;
    left: 0;
  }
  .stats-section .stats-wrapper.style2 .stat-item:nth-child(3)::after {
    display: none;
  }
  .wrap-partners {
    padding-bottom: 10px;
  }
  .wrap-partners .logo-item {
    width: 150px;
    height: 50px;
    padding: 0 1rem;
    margin-right: 20px;
    border-radius: 8px;
  }
  .hero .hero-content {
    padding: 0 6px;
  }
  .hero .hero-content .hero-subtitle {
    font-size: 14px;
    line-height: 20px;
  }
  .use-cases-section .use-case-grid .use-case-box .box-header {
    padding-bottom: 8px;
  }
  .use-cases-section .use-case-grid .use-case-box .box-footer {
    padding-top: 8px;
  }
  .pillars-section .pillars-grid .pillar-box .box-header {
    padding-bottom: 8px;
  }
  .pillars-section .pillars-grid .pillar-box .box-footer {
    padding-top: 8px;
  }
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-white-primary,
  .btn-outline {
    padding: 12px 16px;
    gap: 10px;
  }
  .btn--icon {
    padding: 4px 4px 4px 16px;
  }
  .btn--icon .btn-icon {
    width: 32px;
    height: 32px;
  }
  .hero .hero-content .hero-buttons {
    gap: 12px;
  }
  .min-h-326px {
    min-height: auto;
  }
  .leads-section {
    padding: 60px 0;
  }
  .testimonials-section {
    padding: 60px 0 120px;
  }
  .testimonials-section .testimonial-card.highlighted .testimonial-content p {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #111111;
  }
  .pillars-section {
    padding-bottom: 80px;
  }
  .mrt--70px {
    margin-top: -30px;
  }
  .hero {
    padding-top: 60px;
  }
  .hero .hero-content .hero-title {
    font-size: 40px;
    line-height: 48px;
  }
  .booking-flow h1 {
    font-size: 40px;
    line-height: 48px;
  }
  .booking-flow .steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding-block: 0;
  }
  .booking-flow .steps .step {
    padding: 8px 0;
  }
  .booking-flow form {
    padding: 20px;
  }
  .booking-flow form .form-title {
    margin-bottom: 16px;
  }
  .booking-flow .thankyou-block h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .booking-flow .thankyou-block p {
    font-size: 16px;
    line-height: 24px;
  }
  .how-it-works {
    padding: 60px 0;
  }
  .how-it-works .feature-card {
    padding-inline: 0;
  }
  .how-it-works .feature-card .feature-content {
    padding-top: 0;
  }
}
@media screen and (max-width: 575px) {
  .cta-section .cta-card {
    padding: 32px 22px;
  }
  .cta-section .cta-card .cta-content p {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #2E2E2E;
  }
  .main-footer .footer-top {
    padding-bottom: 24px;
  }
  .main-footer .footer-top .footer-widget .footer-socials {
    margin-top: 22px;
  }
  .main-footer .footer-top .footer-widget ul li {
    margin-bottom: 12px;
  }
  .main-footer .footer-top .footer-bottom {
    margin-top: 36px;
    padding-top: 24px;
  }
  .main-footer .footer-top .footer-bottom .footer-links {
    gap: 18px;
    flex-wrap: wrap;
  }
  .faq-section {
    padding: 56px 0;
  }
  .faq-section .faq-heading h2 {
    font-size: 32px;
  }
  .faq-section .faq-accordion .accordion-item .accordion-button {
    font-size: 18px;
    padding-right: 46px;
  }
  .faq-section .faq-accordion .accordion-item .accordion-button::before {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .faq-section .faq-accordion .accordion-item .accordion-body {
    padding-right: 0;
    font-size: 14px;
  }
  .booking-flow form .features-grid-wrapper {
    margin-bottom: 32px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pillars-section {
    padding-bottom: 50px;
  }
}

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