* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Google Sans", sans-serif;
}

body {
  background: #f8fafc;
  color: #111827;
}
.a-tag-for-back {
  margin-bottom: 30px;
  display: block;
}
.navbar {
  width: 100%;
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  transition: .3s;
}

.scrolled header.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 111;
  transition: .3s;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: #2563eb;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}
nav a:hover {
    text-decoration: none;
}
nav a.active {
  color: #0251bd;
}
.nav-btn {
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  background: linear-gradient(to right, #026fe2, #023ba2);
  border: 0;
}

.nav-btn.nav-btn-login {
  background: #e5e7eb;
  color: #222;
}

.nav-btn.nav-btn-login:hover {
  background: #222;
}

.nav-btn:hover {
  background: linear-gradient(to right, #023ba2, #026fe2);
  transition: .5s;
  color: #fff;
  text-decoration: none;
}

.hero {
  min-height: 85vh;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.tagline {
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: quicksand;
  font-weight: bold;
}

.description {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.btn {
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-block;
}

.primary {
  background: linear-gradient(to right, #026fe2, #023ba2);
  color: #ffffff;
  transition: .5s;
  border: 0;
}

.primary:hover {
  background: linear-gradient(to right, #023ba2, #026fe2);
  transition: .5s;
  color: #fff;
}

.secondary {
  background: #e5e7eb;
  color: #111827;
}

.secondary:hover {
  background: #111827;
  color: #e5e7eb;
  transition: .3s;
}

.trust {
  color: #6b7280;
  font-size: 14px;
}

.booking-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.booking-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.booking-card label {
  display: block;
  margin: 14px 0 8px;
  font-weight: 600;
}

.booking-card input,
.booking-card select {
  width: 100%;
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
}

.booking-card input:focus-visible {
  outline: 0;
  border-color: #2563eb;
}

.booking-card button {
  width: 100%;
  margin-top: 22px;
  padding: 15px;
  border: none;
  background: #015cd6;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  border: 0;
}

.booking-card button:hover {
  background: #0269da;
  transition: .3s;
}

.small-text {
  text-align: center;
  color: #6b7280;
  margin-top: 14px;
  font-size: 13px;
}

.niches,
.features,
.pricing {
  padding: 80px 8%;
  text-align: center;
}

.niches h2,
.features h2,
.pricing h2 {
  font-size: 36px;
  margin-bottom: 40px;
  font-family: quicksand;
  font-weight: bold;
}

.niche-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.niche-grid div.div-shadow,
.feature-card,
.pricing-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.niche-grid div.div-shadow a {
  color: #000;
  text-decoration: none;
  display: block;
}

.niche-grid div.div-shadow img {
  display: block;
  margin: 0 auto 15px;
}

.niche-grid div.div-shadow {
  font-size: 20px;
  font-weight: 700;
}

.niche-grid .p-business {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  opacity: .7;
}

.niche-grid div.div-shadow:hover {
  background: linear-gradient(to right, #026fe2, #023ba2);
  color: #fff;
  transition: .3s;
}

.niche-grid div.div-shadow:hover span,
.niche-grid div.div-shadow:hover .p-business{
  color: #fff!important;
  transition: .3s;
}

.niche-grid div.div-shadow:hover img {
  background: #fff;
  border-radius: 100px;
  padding: 5px;
  transition: .3s;
}

body #faq-wrapper.faq-index-wrapper h2 {
  font-size: 36px;
  font-family: quicksand;
  font-weight: bold;
  color: #111827;
}

#faq-wrapper.faq-index-wrapper .container {
  max-width: 960px;
  width: 100%;
}

#faq-wrapper.faq-index-wrapper .accordion-item {
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  margin: 0 auto 30px;
}

#faq-wrapper.faq-index-wrapper .accordion-button {
  border: 0 !important;
  box-shadow: unset;
  background: transparent !important;
  font-size: 18px;
  font-weight: bold;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.feature-card p {
  color: #4b5563;
  line-height: 1.6;
}

.pricing-card {
  max-width: 360px;
  margin: auto;
}

.price {
  font-size: 42px;
  font-weight: 800;
  margin: 18px 0;
  color: #2563eb;
}

.price span {
  font-size: 16px;
  color: #6b7280;
}

.pricing-card p {
  margin-bottom: 24px;
  color: #4b5563;
}
.pricing.home-pricing.reveal-on-scroll.pricing-index {
  display: flex;
  justify-content: center;
  gap: 30px;
}.pricing.home-pricing.reveal-on-scroll.pricing-index .pricing-card {
  margin: 0;
}.pricing.home-pricing.reveal-on-scroll.pricing-index .pricing-card .pricing-ul-wrapper ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}.pricing.home-pricing.reveal-on-scroll.pricing-index .pricing-card .pricing-ul-wrapper ul li {
  border: 1px solid #eaecef !important;
  width: 100%;
  text-align: left;
}
#testimonial {
  padding: 76px 0 62px;
  background: #f3f5f8;
  overflow: hidden;
}

#testimonial .container {
  max-width: 1200px;
  position: relative;
}

#testimonial .testimonial-heading h2 {
  color: #192348;
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 43px;
  font-family: quicksand;
  font-weight: bold;
}

#testimonial .testimonial-carousel {
  position: static;
}

#testimonial .testimonial-card {
  min-height: 272px;
  padding: 31px 29px 26px;
  background: #ffffff;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#testimonial .testimonial-review {
  color: #222944;
  font-size: 17px;
  line-height: 1.45;
  margin: 0 0 28px;
}

#testimonial .testimonial-client {
  display: flex;
  align-items: center;
  gap: 13px;
}

#testimonial .testimonial-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

#testimonial .avatar-jenny {
  background: #23625e;
}

#testimonial .avatar-jacob {
  background: #264b58;
}

#testimonial .avatar-theresa {
  background: #776047;
}

#testimonial .avatar-cameron {
  background: #1d5165;
}

#testimonial .avatar-esther {
  background: #77515d;
}

#testimonial .avatar-robert {
  background: #3e536e;
}

#testimonial .testimonial-client h3 {
  color: #161f3e;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 3px;
}

#testimonial .testimonial-client p {
  color: #858da0;
  font-size: 11px;
  line-height: 1.2;
  margin: 0;
}

#testimonial .owl-theme .owl-nav {
  position: absolute;
  right: 15px;
  top: -8px;
  display: flex;
  gap: 13px;
  margin: 0;
}

#testimonial .owl-theme .owl-nav [class*=owl-] {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #ffffff;
  color: #596277;
  font-size: 29px;
  line-height: 41px;
  margin: 0;
  transition: color .2s ease, box-shadow .2s ease;
}

#testimonial .owl-theme .owl-nav [class*=owl-]:hover {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(25, 35, 72, .08);
  color: #192348;
}

#testimonial .owl-theme .owl-dots {
  margin-top: 43px;
}

#testimonial .owl-theme .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 4px;
  background: #d1d5de;
}

#testimonial .owl-theme .owl-dots .owl-dot.active span {
  width: 34px;
  background: #192d66;
}

footer {
  padding: 15px 0px;
  text-align: center;
  background: #111827;
  color: #ffffff;
}
footer .container {
  max-width: 100%;
  width: 85%;
}
footer .container .col-lg-6:first-child {
  display: flex;
  justify-content: start;
}footer .container .col-lg-6:last-child {
  justify-content: end;
  display: flex;
}footer p {
  margin: 0;
}footer .wrapper-copyriight-pages ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}footer .wrapper-copyriight-pages ul li a {
  color: #fff;
  text-decoration: none;
}footer .wrapper-copyriight-pages ul li a:hover {
  transition: .3s;
  color: #0268da;
}





.hero.center-align {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero.center-align .btn.primary {
  margin-top: 20px;
}








/* ======================feature-page-css====================== */
/* ======================feature-page-css====================== */
/* ======================feature-page-css====================== */

.features-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f4faff, #ffffff);
  font-family: Arial, sans-serif;
}

.features-container {
  max-width: 1200px;
  margin: auto;
}

.features-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.features-header span {
  display: inline-block;
  color: #007bff;
  background: #e8f3ff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-header h2 {
  font-size: 38px;
  color: #102a43;
  margin-bottom: 15px;
  font-family: quicksand;
  font-weight: bold;
}

.features-header p {
  font-size: 17px;
  color: #5f6f81;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.08);
  border: 1px solid #eaf3ff;
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 123, 255, 0.15);
}

.feature-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  color: #102a43;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #5f6f81;
  line-height: 1.6;
  margin: 0;
}





/* ======================End-feature-page-css====================== */
/* ======================End-feature-page-css====================== */
/* ======================End-feature-page-css====================== */






/* ======================Partner-page-css====================== */
/* ======================Partner-page-css====================== */
/* ======================Partner-page-css====================== */
#top-hero-banner { 
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

#top-hero-banner .wrapper-with-position {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#top-hero-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
}

#top-hero-banner .wrap-postion-image h1 {
  color: #fff;
  font-size: 42px;
  line-height: 1.4;
  font-family: Nunito;
  font-weight: bold;
}

#top-hero-banner .wrap-postion-image p {
  color: #fff;
  opacity: .8;
  font-size: 16px;
  line-height: 24px;
}

#top-hero-banner .btn-linker {
  padding: 10px 20px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 60px;
  background: linear-gradient(to right, #026fe2, #023ba2);
  transition: .3s;
}

#top-hero-banner .btn-linker:hover {
  background: linear-gradient(to right, #023ba2, #026fe2);
  transition: .3s;
}

#section-partner-2 {
  padding: 100px 0px;
}

#section-partner-2 .row {
  align-items: center;
  display: flex;
}

#section-partner-2 .wrap-partner2-image img {
  width: 100%;
}

#section-partner-2 .partner-uls li::before {
  content: '⮚';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transform: unset;
}

#section-partner-2 .partner-uls li {
  font-size: 20px;
  color: #222;
  position: relative;
  line-height: 1.4;
  padding-left: 20px;
  padding-bottom: 5px;
}

#section-partner-2 .partner-uls {
  list-style: none;
  padding: 0;
}

#section-partner-2 .wrap-partner2-iner h2 {
  font-weight: 900;
  color: #222;
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: Nunito;
}

#section-partner-2 .wrap-partner2-iner p {
  font-size: 20px;
  color: #222;
  position: relative;
  line-height: 1.4;
  padding-bottom: 5px;
}

#faq-wrapper {
  padding: 100px 0px;
}

#faq-wrapper .title-faq-wrapper h2 {
  font-weight: 900;
  color: #222;
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: Nunito;
  text-align: center;
}

#faq-wrapper .accordion-item {
  border: 0;
  border-bottom: 1px solid #e7e3e3;
}

#faq-wrapper .accordion-button:focus {
  box-shadow: none;
}

/* ======================End-Partner-page-css====================== */
/* ======================End-Partner-page-css====================== */
/* ======================End-Partner-page-css====================== */


/* ======================Register-page-css====================== */
/* ======================Register-page-css====================== */
/* ======================Register-page-css====================== */
#register-with-us .container {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

#register-with-us .row {
  margin: 0;
}

#register-with-us .col-md-3 {
  padding: 0;
  background: linear-gradient(to right, #026fe2, #023ba2);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#register-with-us .quickeats-logo-wrapper .logo {
  background: #fff;
  border-radius: 250px;
  height: 250px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

#register-with-us .quickeats-logo-wrapper img {
  height: auto;
  width: 80%;
  margin: auto;
  cursor: pointer;
}

#register-with-us .form-wrapper-register {
  padding: 40px 20px;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  position: relative;
}

#register-with-us .form-heading-top h1 {
  font-family: Nunito;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
}

#register-with-us .form-calling-top {
  position: absolute;
  right: 0;
  top: 10px;
}

#register-with-us .form-calling-top h4 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

#register-with-us .form-calling-top h4 a {
  color: #023ca4;
}

#register-with-us .wrap-box-shoadaw {
  padding: 20px;
  background: #fff;
  margin: 0px 0px 30px;
  box-shadow: 2px 1px 7px 4px #edeef2;
  border-radius: 8px;
}

#register-with-us .wrap-box-shoadaw label {
  font-family: Nunito;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #424242;
}

#register-with-us .wrap-box-shoadaw .form-control {
  height: 50px;
  border-radius: 10px;
  text-transform: capitalize;
}

#register-with-us .wrap-box-shoadaw .form-control.phone#phone {
  border-radius: 0px 10px 10px 0px;
}

#register-with-us #location {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding: .375rem .75rem;
  margin-top: 10px;
}

#register-with-us .btn.btn-success.submmit-scuces {
  background: linear-gradient(to right, #026fe2, #023ba2);
  width: 100%;
  height: 45px;
  font-family: Nunito;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
}

#register-with-us .btn.btn-success.submmit-scuces:hover {
  background: linear-gradient(to right, #023ba2, #026fe2);
  transition: .3s;
}

#register-with-us .registernnrw {
  font-family: Nunito;
  font-weight: bold;
  margin: 20px 0px !important;
}

#register-with-us .registernnrw a {
  color: #023ba2;
  font-size: 16px;
  background: transparent;
  border: none;
  font-family: open sans;
  font-weight: bold;
}

#register-with-us .wrap-box-shoadaw .form-control:focus,
#register-with-us #location:focus,
#location:focus-visible {
  box-shadow: none;
  border-color: #023ba2;
}

#location:focus-visible {
  outline: 0;
}

#login-with-password,
#login-with-otp {
  background: transparent;
  border: none;
  font-weight: bold;
  color: #023ba2;
  float: unset !important;
}

#password-form {
  display: none;
}

#register-with-us .registernnrw a:focus,#register-with-us .registernnrw a:focus {
  outline: 0;
  box-shadow: none;
}.form-group.form-group-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}.wrapper-i-am {
  width: 18%;
}.wrapper-i-am img {
  margin-right: 5px;
}

/* ======================End-Register-page-css====================== */
/* ======================End-Register-page-css====================== */
/* ======================End-Register-page-css====================== */
#menu-click {
  display: none;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-header h2 {
    font-size: 32px;
  }

  #testimonial {
    padding: 62px 0 48px;
  }

  #testimonial .testimonial-heading h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .features-section {
    padding: 60px 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-header h2 {
    font-size: 28px;
  }

  #testimonial .testimonial-heading h2 {
    max-width: 210px;
    font-size: 28px;
    margin-bottom: 30px;
  }

  #testimonial .testimonial-card {
    min-height: 245px;
    padding: 26px 23px 22px;
  }

  #testimonial .owl-theme .owl-nav {
    display: none;
  }

  #testimonial .owl-theme .owl-dots {
    margin-top: 28px;
  }
}


@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 42px;
  }

  nav {
    display: none;
  }

  .niche-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}



@media only screen and (max-device-width: 540px) and (orientation: portrait),
screen and (max-device-height: 540px) and (orientation: landscape),
screen and (max-width: 540px) and (orientation: portrait),
screen and (max-height: 540px) and (orientation: landscape) {

.feature-metrics.feature-reveal div:nth-child(2) {
  margin: 20px 0px;
}.home-metrics .metric-item:nth-child(2) {
  margin: 30px 0px  !important;
}
  .scrolled header.navbar,
  header.navbar {
    padding: 10px 15px;
  }

  #menu-click {
    display: block !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .openmenu nav {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
  }

  .openmenu nav a {
    display: block;
  }


  #register-with-us .col-md-3 {
    display: none;
  }

  #register-with-us .form-wrapper-register {
    padding: 40px 0px;
  }

  #register-with-us .form-heading-top h1 {
    font-size: 32px;
  }

  #register-with-us .row.row.row-sedsd .form-group.col-md-12,
  #register-with-us .row.row.row-sedsd .form-group.col-md-6,
  #register-with-us .row.row.row-sedsd .form-group.col-md-4{
    padding: 0;
  }

  #register-with-us .form-calling-top {
    position: fixed;
    right: 0;
    top: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    background: #023ba2;
    justify-content: center;
    left: 0;
    right: 0;
    top: 0;
    z-index: 11;
    padding: 4px 0px;
  }

  #register-with-us .form-calling-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }

  #register-with-us .form-calling-top h4 a {
    color: #fff;
    text-decoration: none;
  }

.form-group.form-group-wrapper { 
  justify-content: center;
}.form-group.form-group-wrapper .wrapper-i-am {
  width: 45%;
  text-align: center;
}.wrapper-i-am img { 
  display: block;
  margin: 0 auto;
}
   .openmenu nav {
        display: block;
        position: fixed;
    inset: 0px;
        background: #fff;
        top: 65px;
        padding: 10px;
        z-index: 111;
    }.openmenu nav a {
        display: block;
        padding: 20px 0px;
    }.openmenu nav a:hover {
        text-decoration: none;
    }.openmenu nav a.nav-btn {
        padding: 15px 20px;
        margin-bottom: 20px;
        text-align: center;
    } 

    footer .container .row.row-footer {
      flex-direction: column-reverse;
    }footer .container {
      max-width: 100%;
      width: 100%;
    }footer .container .col-lg-6:first-child .wrapper-copyriight {
      width: 100%;
      margin-top: 10px;
      border-top: 1px solid #232d41;
      padding-top: 10px;
    }footer .wrapper-copyriight-pages ul li a {
      font-size: 12px;
    }footer .wrapper-copyriight-pages ul {
      gap: 15px;
    }footer .container .col-lg-6:last-child {
      justify-content: center; 
    }footer p {
      font-size: 12px;
    }
}

/* ======================Home-page-refresh====================== */
html {
  scroll-behavior: smooth;
}

body.home-index-page {
  background:
    linear-gradient(90deg, rgba(2, 111, 226, .05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(2, 111, 226, .04) 1px, transparent 1px),
    #f8fafc;
  background-size: 46px 46px;
}

.home-page {
  overflow: hidden;
}

.home-page .section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.home-page .section-heading span,
.home-demo-strip span,
.pricing-label {
  display: inline-flex;
  align-items: center;
  color: #026fe2;
  background: rgba(2, 111, 226, .08);
  border: 1px solid rgba(2, 111, 226, .12);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 15px;
}

.home-page .section-heading h2,
.home-demo-strip h2,
.home-pricing .pricing-card h2 {
  color: #111827;
  font-family: Quicksand, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px;
}

.home-page .section-heading p {
  color: #5b6678;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.home-hero {
  position: relative;
  min-height: 88vh;
  padding: 92px 8% 82px;
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(2, 59, 162, .1), transparent 34%),
    linear-gradient(315deg, rgba(2, 111, 226, .12), transparent 38%);
}

.home-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 66px;
  bottom: 58px;
  width: min(520px, 42vw);
  z-index: -1;
  border: 1px solid rgba(2, 111, 226, .13);
  background:
    repeating-linear-gradient(135deg, rgba(2, 111, 226, .08) 0 1px, transparent 1px 16px),
    rgba(255, 255, 255, .45);
  border-radius: 28px;
  transform: rotate(-2deg);
}

.home-hero .hero-content {
  max-width: 680px;
}

.home-hero .tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #023ba2;
  background: #ffffff;
  border: 1px solid rgba(2, 111, 226, .14);
  border-radius: 999px;
  padding: 9px 15px;
  box-shadow: 0 12px 28px rgba(2, 59, 162, .08);
}

.home-hero .tagline::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #026fe2;
  box-shadow: 0 0 0 6px rgba(2, 111, 226, .12);
}

.home-hero h1 {
  color: #0f172a;
  font-size: clamp(44px, 5vw, 76px);
  line-height: .98;
  margin: 22px 0 24px;
}

.home-hero .description {
  max-width: 620px;
  color: #4b5563;
  font-size: 19px;
}

.home-hero .hero-buttons {
  flex-wrap: wrap;
}

.home-hero .btn,
.home-demo-strip .btn,
.home-pricing .btn {
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(2, 59, 162, .16);
}

.home-hero .hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.home-hero .hero-proof span {
  color: #475569;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
  min-height: 610px;
}

.hero-showcase .booking-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  margin-left: auto;
  border: 1px solid rgba(2, 111, 226, .12);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .14);
  animation: homeCardFloat 6s ease-in-out infinite;
}

.booking-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.booking-card-top span {
  color: #0f172a;
  font-family: Quicksand, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.booking-card-top strong {
  color: #026fe2;
  background: rgba(2, 111, 226, .08);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
}

.floating-schedule-card {
  position: absolute;
  z-index: 3;
  width: 230px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(2, 111, 226, .14);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
  backdrop-filter: blur(10px);
  animation: homeFloatSmall 5.5s ease-in-out infinite;
}

.floating-schedule-card span {
  color: #026fe2;
  font-size: 12px;
  font-weight: 800;
}

.floating-schedule-card strong {
  display: block;
  color: #111827;
  font-size: 16px;
  margin: 6px 0 4px;
}

.floating-schedule-card p {
  color: #64748b;
  font-size: 13px;
  margin: 0;
}

.floating-schedule-card.card-one {
  left: 0;
  top: 82px;
}

.floating-schedule-card.card-two {
  right: -16px;
  bottom: 94px;
  animation-delay: .7s;
}

.home-metrics {
  width: min(1120px, calc(100% - 36px));
  margin: -26px auto 34px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(2, 111, 226, .12);
  border: 1px solid rgba(2, 111, 226, .13);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .08);
}

.metric-item {
  background: #ffffff;
  padding: 28px;
  text-align: center;
}

.metric-item:first-child {
  border-radius: 18px 0 0 18px;
}

.metric-item:last-child {
  border-radius: 0 18px 18px 0;
}

.metric-item strong {
  display: block;
  color: #023ba2;
  font-family: Quicksand, sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 9px;
}

.metric-item span {
  color: #526071;
  font-size: 14px;
  font-weight: 700;
}

.home-page .niches,
.home-page .features,
.home-page .pricing {
  padding: 86px 8%;
}

.home-page .niche-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .niche-grid div.div-shadow {
  position: relative;
  min-height: 220px;
  padding: 30px;
  text-align: left;
  border: 1px solid rgba(2, 111, 226, .1);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.home-page .niche-grid div.div-shadow::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 4px;
  background: linear-gradient(to right, #026fe2, #023ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.home-page .niche-grid div.div-shadow:hover {
  transform: translateY(-9px);
  border-color: rgba(2, 111, 226, .24);
  box-shadow: 0 22px 48px rgba(2, 59, 162, .12);
}

.home-page .niche-grid div.div-shadow:hover::after {
  transform: scaleX(1);
}

.home-page .niche-grid div.div-shadow a {
  position: relative;
  z-index: 1;
  height: 100%;
}

.home-page .niche-grid div.div-shadow img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 0 0 22px;
}

.home-page .niche-grid div.div-shadow span {
  display: block;
  color: #111827;
  font-size: 22px;
  margin-bottom: 12px;
}

.home-page .niche-grid .p-business {
  color: #64748b;
  margin: 0;
}

.home-workflow {
  background: #ffffff;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.workflow-card {
  position: relative;
  min-height: 270px;
  padding: 34px;
  background: #f8fafc;
  border: 1px solid rgba(2, 111, 226, .12);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .28s ease, background .28s ease;
}

.workflow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 111, 226, .12), transparent 56%);
  opacity: 0;
  transition: opacity .28s ease;
}

.workflow-card span {
  position: relative;
  display: inline-flex;
  color: #026fe2;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 72px;
}
.workflow-card .ss { 
  width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0px 0px;
  height: 80px;
  border-radius: 50px;
  background: linear-gradient(to right, #2f6297, #749eea);
  margin-bottom: 30px;
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-bob-y{
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

 


.workflow-card h3,
.workflow-card p {
  position: relative;
}

.workflow-card h3 {
  color: #111827;
  font-size: 24px;
  margin-bottom: 12px;
}

.workflow-card p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.workflow-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
}

.workflow-card:hover::before {
  opacity: 1;
}

.home-demo-strip {
  width: min(1120px, calc(100% - 36px));
  margin: 26px auto;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(2, 111, 226, .94), rgba(2, 59, 162, .96)),
    #023ba2;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(2, 59, 162, .22);
}

.home-demo-strip span {
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
}

.home-demo-strip h2 {
  max-width: 680px;
  color: #ffffff;
  margin: 0;
}

.home-demo-strip .btn {
  flex: 0 0 auto;
  color: #023ba2;
  background: #ffffff;
}

.home-pricing {
  background: transparent;
}

.home-pricing .pricing-card {
  max-width: 520px;
  padding: 40px;
  border: 1px solid rgba(2, 111, 226, .14);
  border-radius: 28px;
}

.home-pricing .pricing-card h2 {
  font-size: 32px;
}

.home-pricing .price {
  color: #023ba2;
}
.pricing.home-pricing.reveal-on-scroll.pricing-index {
  display: flex;
  flex-wrap: wrap;
}
.faq-index-wrapper {
  padding: 86px 0;
}

#faq-wrapper.faq-index-wrapper .accordion-item {
  border: 1px solid rgba(2, 111, 226, .12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

#faq-wrapper.faq-index-wrapper .accordion-button {
  color: #111827;
  padding: 21px 24px;
}

#faq-wrapper.faq-index-wrapper .accordion-body {
  color: #5b6678;
  line-height: 1.7;
  padding: 0 24px 23px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes homeCardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes homeFloatSmall {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 1100px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero::after {
    right: 5%;
    width: 58vw;
    opacity: .55;
  }

  .hero-showcase {
    min-height: auto;
  }

  .hero-showcase .booking-card {
    margin: 0 auto;
  }

  .floating-schedule-card.card-one {
    left: 4%;
  }

  .floating-schedule-card.card-two {
    right: 4%;
  }
}

@media (max-width: 900px) {
  .home-page .niche-grid,
  .workflow-grid,
  .home-metrics {
    grid-template-columns: 1fr;
  }

  .metric-item:first-child,
  .metric-item:last-child,
  .metric-item {
    border-radius: 18px;
  }

  .home-demo-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding: 56px 18px 62px;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .home-page .section-heading h2,
  .home-demo-strip h2 {
    font-size: 30px;
  }

  .home-page .niches,
  .home-page .features,
  .home-page .pricing,
  .faq-index-wrapper {
    padding: 58px 18px;
  }

  .hero-showcase .booking-card {
    padding: 24px;
  }

  .floating-schedule-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    margin-top: 16px;
  }

  .home-metrics,
  .home-demo-strip {
    width: calc(100% - 24px);
    padding: 22px;
  }

  .home-page .niche-grid div.div-shadow,
  .workflow-card,
  .home-pricing .pricing-card {
    padding: 24px;
  }
}

/* ======================View-demo-page-refresh====================== */
body.view-demo-page {
  background:
    linear-gradient(90deg, rgba(2, 111, 226, .05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(2, 111, 226, .04) 1px, transparent 1px),
    #f8fafc;
  background-size: 46px 46px;
}

.demo-showcase-page {
  overflow: hidden;
}

.demo-gallery-hero {
  position: relative;
  padding: 88px 0 70px;
  isolation: isolate;
}

.demo-gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(2, 59, 162, .12), transparent 40%),
    linear-gradient(315deg, rgba(2, 111, 226, .11), transparent 36%);
}

.demo-gallery-hero .container,
.demo-library .container {
  max-width: 1180px;
}

.demo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  gap: 62px;
  align-items: center;
}

.demo-eyebrow {
  display: inline-flex;
  color: #026fe2;
  background: rgba(2, 111, 226, .08);
  border: 1px solid rgba(2, 111, 226, .13);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
}

.demo-hero-copy h1 {
  color: #0f172a;
  font-family: Quicksand, sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 24px;
}

.demo-hero-copy p {
  max-width: 620px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 30px;
}

.demo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.demo-hero-actions .btn {
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(2, 59, 162, .14);
}

.demo-hero-panel {
  position: relative;
  min-height: 520px;
}

.demo-browser-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(2, 111, 226, .15);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .15);
  transform: rotate(2deg);
  animation: demoPanelFloat 6s ease-in-out infinite;
}

.demo-browser-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(2, 111, 226, .12);
  backdrop-filter: blur(12px);
}

.demo-browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #026fe2;
}

.demo-browser-top span:nth-child(2) {
  background: #8abcf3;
}

.demo-browser-top span:nth-child(3) {
  background: #023ba2;
}

.demo-browser-card img {
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  min-height: calc(100% - 46px);
  object-fit: cover;
  object-position: top center;
  transition: transform 9s ease;
}

.demo-browser-card:hover img {
  transform: translateY(-42%);
}

.demo-floating-note {
  position: absolute;
  z-index: 3;
  width: 180px;
  padding: 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(2, 111, 226, .14);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .15);
  backdrop-filter: blur(10px);
  animation: demoNoteFloat 5.2s ease-in-out infinite;
}

.demo-floating-note strong {
  display: block;
  color: #023ba2;
  font-family: Quicksand, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.demo-floating-note span {
  color: #526071;
  font-size: 13px;
  font-weight: 700;
}

.demo-floating-note.note-one {
  left: -28px;
  top: 80px;
}

.demo-floating-note.note-two {
  right: -20px;
  bottom: 86px;
  animation-delay: .7s;
}

.demo-library {
  padding: 54px 0 92px;
}

.demo-library-top {
  margin-bottom: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.demo-library-top h2 {
  color: #111827;
  font-family: Quicksand, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

.demo-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.demo-filter {
  border: 1px solid rgba(2, 111, 226, .14);
  background: rgba(255, 255, 255, .82);
  color: #475569;
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.demo-filter:hover,
.demo-filter.active {
  color: #ffffff;
  background: linear-gradient(to right, #026fe2, #023ba2);
  box-shadow: 0 14px 28px rgba(2, 59, 162, .16);
  transform: translateY(-2px);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.demo-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(2, 111, 226, .12);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
  transition: transform .28s ease, opacity .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.demo-card:hover {
  transform: translateY(-9px);
  border-color: rgba(2, 111, 226, .26);
  box-shadow: 0 28px 70px rgba(2, 59, 162, .16);
}

.demo-card.is-hidden {
  display: none;
}

.featured-demo {
  grid-column: span 2;
}

.demo-preview {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #dbeafe;
}

.featured-demo .demo-preview {
  height: 430px;
}

.demo-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .28), transparent 42%);
  pointer-events: none;
}

.demo-preview img {
  display: block;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: translateY(0);
  transition: transform 10s ease;
}

.demo-card:hover .demo-preview img {
  transform: translateY(-45%);
}

.demo-card-content {
  padding: 24px;
}

.demo-card-content span {
  display: inline-flex;
  color: #026fe2;
  background: rgba(2, 111, 226, .08);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.demo-card-content h3 {
  color: #111827;
  font-family: Quicksand, sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
}

.demo-card-content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.demo-card-content a {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(to right, #026fe2, #023ba2);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(2, 59, 162, .14);
}

.demo-card-content a:hover {
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(to right, #023ba2, #026fe2);
}

.demo-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.demo-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes demoPanelFloat {
  0%, 100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes demoNoteFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 991px) {
  .demo-hero-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .demo-hero-panel {
    min-height: auto;
  }

  .demo-browser-card {
    transform: none;
  }

  .featured-demo {
    grid-column: span 1;
  }

  .demo-library-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-filter-tabs {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .demo-gallery-hero {
    padding: 56px 0 48px;
  }

  .demo-hero-copy h1,
  .demo-library-top h2 {
    font-size: 36px;
  }

  .demo-browser-card {
    height: 380px;
    border-radius: 20px;
  }

  .demo-floating-note {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    margin-top: 14px;
  }

  .demo-preview,
  .featured-demo .demo-preview {
    height: 310px;
  }
}

/* ======================Features-page-refresh====================== */
body.features-page {
  background:
    linear-gradient(90deg, rgba(2, 111, 226, .05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(2, 111, 226, .04) 1px, transparent 1px),
    #f8fafc;
  background-size: 46px 46px;
}

.features-showcase-page {
  overflow: hidden;
}

.features-hero {
  position: relative;
  min-height: 82vh;
  padding: 92px 8% 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 66px;
  align-items: center;
  isolation: isolate;
}

.features-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(2, 59, 162, .12), transparent 36%),
    linear-gradient(315deg, rgba(2, 111, 226, .11), transparent 38%);
}

.features-eyebrow {
  display: inline-flex;
  color: #026fe2;
  background: rgba(2, 111, 226, .08);
  border: 1px solid rgba(2, 111, 226, .13);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
}

.features-hero h1 {
  color: #0f172a;
  font-family: Quicksand, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 24px;
}

.features-hero p {
  max-width: 650px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 30px;
}

.features-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.features-hero-actions .btn,
.features-cta .btn {
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(2, 59, 162, .14);
}

.features-orbit {
  position: relative;
  min-height: 520px;
}

.feature-core-card {
  position: absolute;
  inset: 50%;
  width: 260px;
  height: 260px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border: 1px solid rgba(2, 111, 226, .15);
  border-radius: 50%;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .14);
}

.feature-core-card::before {
  content: "";
  position: absolute;
  inset: -42px;
  border: 1px dashed rgba(2, 111, 226, .32);
  border-radius: 50%;
  animation: featureOrbitSpin 18s linear infinite;
}

.feature-core-card span {
  color: #026fe2;
  font-size: 13px;
  font-weight: 900;
}

.feature-core-card strong {
  color: #023ba2;
  font-family: Quicksand, sans-serif;
  font-size: 74px;
  font-weight: 800;
  line-height: 1;
  margin: 8px 0;
}

.feature-core-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.orbit-card {
  position: absolute;
  width: 132px;
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(2, 111, 226, .14);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
  animation: featureCardFloat 5.5s ease-in-out infinite;
}

.orbit-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: invert(34%) sepia(94%) saturate(1873%) hue-rotate(197deg) brightness(92%) contrast(98%);
}

.orbit-card span {
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}

.orbit-one {
  left: 8%;
  top: 13%;
}

.orbit-two {
  right: 4%;
  top: 21%;
  animation-delay: .4s;
}

.orbit-three {
  left: 12%;
  bottom: 12%;
  animation-delay: .8s;
}

.orbit-four {
  right: 10%;
  bottom: 8%;
  animation-delay: 1.2s;
}

.feature-metrics {
  width: min(1120px, calc(100% - 36px));
  margin: -24px auto 34px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(2, 111, 226, .12);
  border: 1px solid rgba(2, 111, 226, .13);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .08);
}

.feature-metrics div {
  background: #ffffff;
  padding: 28px;
  text-align: center;
}

.feature-metrics div:first-child {
  border-radius: 18px 0 0 18px;
}

.feature-metrics div:last-child {
  border-radius: 0 18px 18px 0;
}

.feature-metrics strong {
  display: block;
  color: #023ba2;
  font-family: Quicksand, sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 9px;
}

.feature-metrics span {
  color: #526071;
  font-size: 14px;
  font-weight: 700;
}

.features-showcase-page .features-section {
  padding: 88px 20px;
  background: #ffffff;
}

.features-showcase-page .features-container {
  max-width: 1180px;
}

.features-showcase-page .features-header {
  max-width: 760px;
}

.features-showcase-page .features-header span {
  background: rgba(2, 111, 226, .08);
  border: 1px solid rgba(2, 111, 226, .13);
}

.enhanced-features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.enhanced-feature-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  border: 1px solid rgba(2, 111, 226, .12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.enhanced-feature-card::before {
  content: attr(data-feature-status);
  position: absolute;
  top: 24px;
  right: 24px;
  color: #026fe2;
  background: rgba(2, 111, 226, .08);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.enhanced-feature-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 4px;
  background: linear-gradient(to right, #026fe2, #023ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.enhanced-feature-card:hover {
  transform: translateY(-9px);
  border-color: rgba(2, 111, 226, .26);
  box-shadow: 0 28px 70px rgba(2, 59, 162, .15);
}

.enhanced-feature-card:hover::after {
  transform: scaleX(1);
}

.enhanced-feature-card .feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  margin-bottom: 26px;
}

.enhanced-feature-card .feature-icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: invert(1);
}

.enhanced-feature-card h3 {
  color: #111827;
  font-family: Quicksand, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.enhanced-feature-card p {
  color: #64748b;
  font-size: 15px;
}

.feature-flow {
  width: min(1120px, calc(100% - 36px));
  margin: 80px auto;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: start;
}

.feature-flow-copy {
  position: sticky;
  top: 110px;
}

.feature-flow-copy h2,
.features-cta h2 {
  color: #111827;
  font-family: Quicksand, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

.feature-flow-steps {
  display: grid;
  gap: 16px;
}

.feature-flow-steps div {
  position: relative;
  padding: 26px 28px 26px 86px;
  background: #ffffff;
  border: 1px solid rgba(2, 111, 226, .12);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}

.feature-flow-steps span {
  position: absolute;
  left: 24px;
  top: 25px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(to right, #026fe2, #023ba2);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
}

.feature-flow-steps strong {
  display: block;
  color: #111827;
  font-size: 19px;
  margin-bottom: 6px;
}

.feature-flow-steps p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.features-cta {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 92px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(2, 111, 226, .94), rgba(2, 59, 162, .96));
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(2, 59, 162, .22);
}

.features-cta .features-eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
}

.features-cta h2 {
  max-width: 720px;
  color: #ffffff;
}

.features-cta .btn {
  flex: 0 0 auto;
  color: #023ba2;
  background: #ffffff;
}

.feature-reveal,
.enhanced-feature-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.feature-reveal.is-visible,
.enhanced-feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes featureOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes featureCardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 1100px) {
  .features-hero,
  .feature-flow {
    grid-template-columns: 1fr;
  }

  .feature-flow-copy {
    position: static;
  }

  .features-orbit {
    min-height: 480px;
  }
}

@media (max-width: 900px) {
  .feature-metrics,
  .enhanced-features-grid {
    grid-template-columns: 1fr;
  }

  .feature-metrics div,
  .feature-metrics div:first-child,
  .feature-metrics div:last-child {
    border-radius: 18px;
  }

  .features-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .features-hero {
    padding: 58px 18px;
    display: block;
  }

  .features-hero h1,
  .feature-flow-copy h2,
  .features-cta h2 {
    font-size: 34px;
  }

  .features-orbit {
    min-height: auto;
    margin-top: 34px;
  }

  .feature-core-card,
  .orbit-card {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    height: auto;
    border-radius: 22px;
    margin-top: 14px;
  }

  .feature-core-card::before {
    display: none;
  }

  .feature-metrics,
  .feature-flow,
  .features-cta {
    width: calc(100% - 24px);
  }

  .features-cta {
    padding: 24px;
  }

  .feature-flow-steps div {
    padding: 84px 22px 24px;
  }
}

/* ======================Pricing-page-refresh====================== */
body.pricing-page {
  background:
    linear-gradient(90deg, rgba(2, 111, 226, .05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(2, 111, 226, .04) 1px, transparent 1px),
    #f8fafc;
  background-size: 46px 46px;
}

.pricing-showcase-page {
  overflow: hidden;
}

.pricing-showcase-page .pricing-hero {
  position: relative;
  min-height: 82vh;
  padding: 92px 8% 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: 64px;
  align-items: center;
  isolation: isolate;
}

.pricing-showcase-page .pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(2, 59, 162, .12), transparent 36%),
    linear-gradient(315deg, rgba(2, 111, 226, .11), transparent 38%);
}

.pricing-eyebrow {
  display: inline-flex;
  color: #026fe2;
  background: rgba(2, 111, 226, .08);
  border: 1px solid rgba(2, 111, 226, .13);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
}

.pricing-hero-copy h1 {
  color: #0f172a;
  font-family: Quicksand, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 24px;
}

.pricing-hero-copy p {
  max-width: 640px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 30px;
}

.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pricing-hero-actions .btn,
.pricing-showcase-page .choose-btn {
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(2, 59, 162, .14);
}

.pricing-visual {
  position: relative;
  min-height: 500px;
}

.pricing-orbit-ring {
  position: absolute;
  inset: 52px;
  border: 1px dashed rgba(2, 111, 226, .28);
  border-radius: 50%;
  animation: pricingOrbitSpin 18s linear infinite;
}

.pricing-pulse-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  min-height: 280px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border: 1px solid rgba(2, 111, 226, .15);
  border-radius: 34px;
  box-shadow: 0 30px 85px rgba(15, 23, 42, .15);
  animation: pricingCardFloat 6s ease-in-out infinite;
}

.pricing-pulse-card::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(2, 111, 226, .2), rgba(2, 59, 162, .1));
  border-radius: 44px;
  animation: pricingPulse 2.8s ease-in-out infinite;
}

.pricing-pulse-card span {
  color: #026fe2;
  font-size: 14px;
  font-weight: 900;
}

.pricing-pulse-card strong {
  display: block;
  color: #023ba2;
  font-family: Quicksand, sans-serif;
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  margin: 14px 0 8px;
}

.pricing-pulse-card p {
  color: #64748b;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.pricing-mini-card {
  position: absolute;
  z-index: 2;
  width: 188px;
  padding: 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(2, 111, 226, .14);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .14);
  backdrop-filter: blur(10px);
  animation: pricingMiniFloat 5.2s ease-in-out infinite;
}

.pricing-mini-card strong {
  display: block;
  color: #023ba2;
  font-family: Quicksand, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 7px;
}

.pricing-mini-card span {
  color: #526071;
  font-size: 13px;
  font-weight: 700;
}

.pricing-mini-card.mini-one {
  left: 2%;
  top: 92px;
}

.pricing-mini-card.mini-two {
  right: 2%;
  bottom: 88px;
  animation-delay: .7s;
}

.pricing-showcase-page .pricing-section {
  width: min(1120px, calc(100% - 36px));
  min-height: auto;
  margin: 0 auto;
  padding: 88px 0;
  background: transparent;
  display: block;
}

.pricing-showcase-page .pricing-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.pricing-showcase-page .pricing-header h2 {
  color: #111827;
  font-family: Quicksand, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px;
}

.pricing-showcase-page .pricing-header p {
  color: #5b6678;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 26px;
  align-items: stretch;
}

.pricing-showcase-page .featured-pricing-card {
  position: relative;
  max-width: none;
  padding: 42px;
  text-align: left;
  border: 1px solid rgba(2, 111, 226, .15);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .12);
}

.pricing-highlight-area {
  position: relative;
  margin: -18px -18px 32px;
  padding: 28px 30px 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 111, 226, .96), rgba(2, 59, 162, .98)),
    #023ba2;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(2, 59, 162, .22);
}

.pricing-highlight-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, .22), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: auto, 28px 28px;
  opacity: .85;
}

.pricing-highlight-area::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -56px;
  width: 170px;
  height: 170px;
  border: 24px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
}

.pricing-showcase-page .popular-tag {
  position: relative;
  z-index: 1;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  display: inline-flex;
  align-items: center;
  color: #023ba2;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  margin-bottom: 18px;
}

.pricing-card-head span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  color: #ffffff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.pricing-card-head h3 {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: Quicksand, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
  margin: 16px 0 0;
}

.pricing-showcase-page .price {
  color: #023ba2;
  font-family: Quicksand, sans-serif;
  font-size: 64px;
  line-height: 1;
}

.pricing-showcase-page .currency {
  font-size: 30px;
  vertical-align: 18px;
}

.pricing-showcase-page .month {
  color: #64748b;
}

.pricing-showcase-page .desc {
  max-width: 620px;
  color: #526071;
}

.pricing-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0 0 30px;
}

.pricing-feature-list li {
  position: relative;
  list-style: none;
  border: 0;
  color: #24364f;
  background: #f8fafc;
  border-radius: 14px;
  padding: 13px 14px 13px 38px;
  font-size: 15px;
  font-weight: 700;
}

.pricing-feature-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #026fe2;
  border-bottom: 2px solid #026fe2;
  transform: rotate(-45deg);
}

.pricing-showcase-page .choose-btn {
  max-width: 310px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff !important;
  background: linear-gradient(to right, #026fe2, #023ba2);
  border: 0;
  border-radius: 999px;
  padding: 16px 26px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none !important;
  box-shadow: 0 18px 38px rgba(2, 59, 162, .24);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.pricing-showcase-page .choose-btn:hover {
  color: #ffffff !important;
  transform: translateY(-3px);
  background: linear-gradient(to right, #023ba2, #026fe2);
  box-shadow: 0 24px 48px rgba(2, 59, 162, .3);
}

.pricing-side-panel {
  display: grid;
  gap: 16px;
}

.pricing-side-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(2, 111, 226, .12);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
}

.pricing-side-card span {
  display: inline-flex;
  color: #026fe2;
  background: rgba(2, 111, 226, .08);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.pricing-side-card strong {
  display: block;
  color: #111827;
  font-family: Quicksand, sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.pricing-side-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.pricing-assurance {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing-assurance div {
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(2, 111, 226, .12);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
}

.pricing-assurance span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(to right, #026fe2, #023ba2);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 20px;
}

.pricing-assurance strong {
  display: block;
  color: #111827;
  font-size: 20px;
  margin-bottom: 8px;
}

.pricing-assurance p {
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.pricing-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.pricing-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pricingOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pricingCardFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-12px);
  }
}

@keyframes pricingMiniFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes pricingPulse {
  0%, 100% {
    opacity: .75;
    transform: scale(1);
  }
  50% {
    opacity: .35;
    transform: scale(1.04);
  }
}

@media (max-width: 1050px) {
  .pricing-showcase-page .pricing-hero,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .pricing-visual {
    min-height: 470px;
  }
}

@media (max-width: 800px) {
  .pricing-feature-list,
  .pricing-assurance {
    grid-template-columns: 1fr;
  }

  .pricing-showcase-page .popular-tag {
    display: inline-flex;
    margin-bottom: 18px;
  }
}

@media (max-width: 575px) {
  .pricing-showcase-page .pricing-hero {
    padding: 58px 18px;
    display: block;
  }

  .pricing-hero-copy h1,
  .pricing-showcase-page .pricing-header h2 {
    font-size: 34px;
  }

  .pricing-visual {
    min-height: auto;
    margin-top: 34px;
  }

  .pricing-orbit-ring {
    display: none;
  }

  .pricing-pulse-card,
  .pricing-mini-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none;
    width: 100%;
    min-height: auto;
    margin-top: 14px;
    animation: none;
  }

  .pricing-showcase-page .pricing-section,
  .pricing-assurance {
    width: calc(100% - 24px);
    padding: 58px 0;
  }

  .pricing-showcase-page .featured-pricing-card {
    padding: 28px;
  }

  .pricing-highlight-area {
    margin: -10px -10px 28px;
    padding: 24px;
  }

  .pricing-showcase-page .price {
    font-size: 50px;
  }
}



/* ======================privacy-policy-page-css====================== */
.privacy-policy-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #eef6ff 42%, #f8fafc 100%);
  color: #102033;
}

.privacy-policy-page .navbar {
  position: relative;
  z-index: 20;
  box-shadow: 0 10px 32px rgba(15, 31, 55, .06);
}

.privacy-main {
  overflow: hidden;
}

.privacy-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  gap: 54px;
  align-items: center;
}

.privacy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(2, 111, 226, .18);
  border-radius: 999px;
  background: #ffffff;
  color: #026fe2;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 12px 35px rgba(2, 111, 226, .08);
}

.privacy-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #16b8a6;
  box-shadow: 0 0 0 6px rgba(22, 184, 166, .12);
}

.privacy-hero h1 {
  margin: 24px 0 22px;
  max-width: 780px;
  color: #081c3a;
  font-family: quicksand, "Google Sans", sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.02;
}

.privacy-hero p {
  max-width: 720px;
  color: #52627a;
  font-size: 18px;
  line-height: 1.78;
}

.privacy-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.privacy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.privacy-button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.privacy-button--primary {
  background: linear-gradient(135deg, #026fe2, #023ba2);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(2, 75, 180, .22);
}

.privacy-button--primary:hover {
  color: #ffffff;
  box-shadow: 0 22px 40px rgba(2, 75, 180, .28);
}

.privacy-button--light {
  background: #ffffff;
  color: #0f2747;
  border: 1px solid rgba(15, 39, 71, .1);
}

.privacy-button--light:hover {
  color: #026fe2;
}

.privacy-hero__panel {
  position: relative;
  padding: 34px;
  min-height: 390px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 12%, rgba(22, 184, 166, .18), transparent 34%),
    linear-gradient(145deg, #071a36, #0d3b66 58%, #116a7b);
  color: #ffffff;
  box-shadow: 0 30px 70px rgba(8, 28, 58, .24);
  isolation: isolate;
}

.privacy-hero__panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  pointer-events: none;
}

.privacy-shield {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .2);
  margin-bottom: 68px;
}

.privacy-shield svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-hero__panel span {
  display: block;
  color: #8de6d9;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.privacy-hero__panel strong {
  display: block;
  max-width: 410px;
  margin: 12px 0 16px;
  font-family: quicksand, "Google Sans", sans-serif;
  font-size: 34px;
  line-height: 1.14;
}

.privacy-hero__panel p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.7;
}

.privacy-summary {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.privacy-summary article {
  padding: 26px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 39, 71, .08);
  box-shadow: 0 18px 42px rgba(15, 39, 71, .07);
}

.privacy-summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #eaf4ff;
  color: #026fe2;
  font-weight: 900;
}

.privacy-summary strong {
  display: block;
  margin: 18px 0 9px;
  color: #102033;
  font-size: 19px;
}

.privacy-summary p {
  color: #66758a;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.privacy-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 58px auto 88px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.privacy-index {
  position: sticky;
  top: 105px;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 39, 71, .08);
  box-shadow: 0 18px 42px rgba(15, 39, 71, .07);
}

.privacy-index span {
  display: block;
  margin-bottom: 14px;
  color: #0f2747;
  font-weight: 900;
}

.privacy-index a {
  display: block;
  padding: 10px 0;
  color: #65758d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid rgba(15, 39, 71, .07);
}

.privacy-index a:hover {
  color: #026fe2;
}

.privacy-document {
  display: grid;
  gap: 18px;
}

.privacy-section,
.privacy-contact-card {
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 39, 71, .08);
  box-shadow: 0 18px 45px rgba(15, 39, 71, .07);
}

.privacy-section__number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #0f2747, #026fe2);
  color: #ffffff;
  font-weight: 900;
}

.privacy-section h2,
.privacy-contact-card h2 {
  margin: 2px 0 14px;
  color: #081c3a;
  font-family: quicksand, "Google Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.privacy-section p,
.privacy-contact-card p {
  color: #596b82;
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 14px;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-section li {
  position: relative;
  padding-left: 28px;
  color: #33465d;
  line-height: 1.65;
}

.privacy-section li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0465ccd4;
  box-shadow: 0 0 0 5px rgba(4, 98, 199, 0.14);
}

.privacy-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.privacy-data-grid span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f4f8fc;
  border: 1px solid rgba(15, 39, 71, .07);
  color: #273a52;
  font-weight: 700;
}

.privacy-contact-card {
  grid-template-columns: minmax(0, .85fr) minmax(280px, 1fr);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(2, 111, 226, .94), rgba(13, 59, 102, .96));
}

.privacy-contact-card .privacy-section__number {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .2);
}

.privacy-contact-card h2,
.privacy-contact-card p {
  color: #ffffff;
}

.privacy-contact-links {
  display: grid;
  gap: 12px;
}

.privacy-contact-links a {
  display: block;
  padding: 18px;
  border-radius: 15px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
}

.privacy-contact-links a:hover {
  background: rgba(255, 255, 255, .18);
}

.privacy-contact-links small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.privacy-contact-links strong {
  display: block;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.refund-policy-page .privacy-hero__panel {
  background:
    radial-gradient(circle at 20% 12%, rgba(249, 188, 57, .2), transparent 34%),
    linear-gradient(145deg, #17183a, #123f73 58%, #16656e);
}

.refund-policy-page .privacy-eyebrow::before {
  background: #f9bc39;
  box-shadow: 0 0 0 6px rgba(249, 188, 57, .16);
}

.refund-policy-page .privacy-hero__panel span {
  color: #ffe099;
}

.refund-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.refund-plan-card {
  padding: 22px;
  border-radius: 16px;
  background: #f4f8fc;
  border: 1px solid rgba(15, 39, 71, .08);
}

.refund-plan-card small,
.refund-plan-card span {
  display: block;
}

.refund-plan-card small {
  color: #60718a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.refund-plan-card strong {
  display: block;
  margin: 12px 0 8px;
  color: #081c3a;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.refund-plan-card span {
  color: #52627a;
  font-weight: 700;
}

.refund-plan-card--featured {
  background: linear-gradient(135deg, #0f2747, #026fe2);
  border-color: transparent;
}

.refund-plan-card--featured small,
.refund-plan-card--featured strong,
.refund-plan-card--featured span {
  color: #ffffff;
}

.refund-condition-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.refund-condition-grid span {
  position: relative;
  display: block;
  min-height: 52px;
  padding: 14px 16px 14px 46px;
  border-radius: 14px;
  background: #fff9ed;
  border: 1px solid rgba(249, 188, 57, .3);
  color: #3f4653;
  font-weight: 700;
  line-height: 1.55;
}

.refund-condition-grid span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f9bc39;
  box-shadow: 0 0 0 6px rgba(249, 188, 57, .16);
}

.refund-note {
  display: inline-flex;
  padding: 12px 14px;
  border-radius: 12px;
  background: #eaf4ff;
  color: #0f4d9f !important;
  font-weight: 800;
}

.terms-policy-page .privacy-hero__panel {
  background:
    radial-gradient(circle at 20% 12%, rgba(98, 108, 255, .22), transparent 34%),
    linear-gradient(145deg, #121732, #193b79 58%, #195b86);
}

.terms-policy-page .privacy-eyebrow::before {
  background: #626cff;
  box-shadow: 0 0 0 6px rgba(98, 108, 255, .14);
}

.terms-policy-page .privacy-hero__panel span {
  color: #c9d0ff;
}

.terms-category-grid,
.terms-responsibility-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.terms-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.terms-responsibility-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.terms-category-grid span,
.terms-responsibility-grid span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #273a52;
  font-weight: 800;
  line-height: 1.35;
}

.terms-category-grid span {
  background: #f3f5ff;
  border: 1px solid rgba(98, 108, 255, .14);
}

.terms-responsibility-grid span {
  background: #f4f8fc;
  border: 1px solid rgba(15, 39, 71, .08);
}

.terms-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f3f5ff;
  color: #3944ad !important;
  font-weight: 800;
}

@media (max-width: 991px) {
  .privacy-hero,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-index {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .privacy-index span {
    grid-column: 1 / -1;
  }

  .privacy-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .privacy-hero {
    width: calc(100% - 28px);
    padding: 58px 0 38px;
    gap: 30px;
  }

  .privacy-hero h1 {
    font-size: 40px;
  }

  .privacy-hero p {
    font-size: 16px;
  }

  .privacy-hero__panel {
    min-height: auto;
    padding: 28px;
  }

  .privacy-shield {
    margin-bottom: 42px;
  }

  .privacy-hero__panel strong {
    font-size: 28px;
  }

  .privacy-summary,
  .privacy-layout {
    width: calc(100% - 28px);
  }

  .privacy-index {
    grid-template-columns: 1fr;
  }

  .privacy-section,
  .privacy-contact-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .privacy-data-grid {
    grid-template-columns: 1fr;
  }

  .privacy-contact-card {
    align-items: start;
  }

  .refund-plan-grid {
    grid-template-columns: 1fr;
  }

  .terms-category-grid,
  .terms-responsibility-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================faq-page-unique-theme====================== */
body.faq-page {
  background:
    linear-gradient(90deg, rgba(22, 184, 166, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(2, 111, 226, .07) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #eef8f7 46%, #fffaf4 100%);
  background-size: 44px 44px, 44px 44px, auto;
  color: #102033;
  overflow-x: hidden;
}

.faq-page .navbar {
  position: relative;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(15, 31, 55, .06);
}

.faq-main {
  overflow: hidden;
}

.faq-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 54px;
  align-items: center;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(22, 184, 166, .22);
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(15, 118, 110, .08);
}

.faq-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 5px rgba(245, 158, 11, .16);
}

.faq-hero h1 {
  max-width: 760px;
  margin: 24px 0 22px;
  color: #081c3a;
  font-family: quicksand, "Google Sans", sans-serif;
  font-size: 66px;
  font-weight: 800;
  line-height: 1.02;
}

.faq-hero p {
  max-width: 690px;
  color: #52627a;
  font-size: 18px;
  line-height: 1.78;
  margin: 0;
}

.faq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.faq-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.faq-button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.faq-button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #1798fb, #026fe2);
  box-shadow: 0 18px 34px rgba(2, 111, 226, .22);
}

.faq-button--primary:hover {
  color: #ffffff;
  box-shadow: 0 24px 42px rgba(2, 111, 226, .28);
}

.faq-button--light {
  color: #0f2747;
  background: #ffffff;
  border: 1px solid rgba(15, 39, 71, .1);
}

.faq-button--light:hover {
  color: #0f766e;
}

.faq-preview-panel {
  position: relative;
  min-height: 480px;
  padding: 34px;
  border-radius: 8px;
  background:
   linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(145deg, #102033, #0244ad 62%, #43d7fd);
  background-size: 24px 24px, 24px 24px, auto;
  box-shadow: 0 30px 70px rgba(15, 32, 51, .2);
}

.faq-preview-window {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, .34);
  box-shadow: 0 22px 48px rgba(8, 28, 58, .24);
}

.faq-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 15px;
  background: #f8fafc;
  border-bottom: 1px solid #e8eef5;
}

.faq-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef4444;
}

.faq-window-bar span:nth-child(2) {
  background: #f59e0b;
}

.faq-window-bar span:nth-child(3) {
  background: #10b981;
}

.faq-preview-window img {
  display: block;
  width: 100%;
  height: 365px;
  object-fit: cover;
  object-position: top center;
}

.faq-status-card {
  position: absolute;
  width: 176px;
  padding: 17px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: 0 18px 40px rgba(8, 28, 58, .18);
}

.faq-status-card small {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-status-card strong {
  display: block;
  color: #102033;
  font-size: 22px;
  line-height: 1.1;
  margin-top: 8px;
}

.faq-status-card--top {
  top: 68px;
  right: -18px;
}

.faq-status-card--bottom {
  left: -18px;
  bottom: 62px;
}

.faq-quick-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.faq-quick-grid a {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 8px;
  color: #102033;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 39, 71, .08);
  box-shadow: 0 18px 42px rgba(15, 39, 71, .07);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.faq-quick-grid a:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 118, 110, .3);
  box-shadow: 0 24px 52px rgba(15, 39, 71, .11);
}

.faq-quick-grid span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: #0f766e;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 20px;
}

.faq-quick-grid a:nth-child(2) span {
  background: #026fe2;
}

.faq-quick-grid a:nth-child(3) span {
  background: #f59e0b;
}

.faq-quick-grid a:nth-child(4) span {
  background: #ef6461;
}

.faq-quick-grid strong {
  display: block;
  font-size: 19px;
  margin-bottom: 10px;
}

.faq-quick-grid p {
  color: #60718a;
  line-height: 1.6;
  margin: 0;
}

.faq-page #faq-wrapper.faq-index-wrapper {
  padding: 60px 0 96px;
}

.faq-page #faq-wrapper.faq-index-wrapper .container {
  max-width: 1180px;
}

.faq-page .title-faq-wrapper {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.faq-page .title-faq-wrapper span {
  display: inline-flex;
  color: #0242ab;
  background: #026cdf1c;;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.faq-page #faq-wrapper .title-faq-wrapper h2,
body.faq-page #faq-wrapper.faq-index-wrapper h2 {
  color: #081c3a;
  font-family: quicksand, "Google Sans", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 14px;
}

.faq-page .title-faq-wrapper p {
  color: #60718a;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.faq-answer-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.faq-help-card {
  position: sticky;
  top: 108px;
  padding: 26px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(145deg, #102033, #0244ad 62%, #43d7fd);
  background-size: 22px 22px, 22px 22px, auto;
  box-shadow: 0 24px 56px rgba(15, 32, 51, .18);
}

.faq-help-card span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  color: #ffdf8a;
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.faq-help-card h3 {
  color: #ffffff;
  font-family: quicksand, "Google Sans", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.14;
  margin: 22px 0 14px;
}

.faq-help-card p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-help-card a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  color: #102033;
  background: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.faq-help-card a:hover {
  color: #0f766e;
  text-decoration: none;
}

.faq-page #faq-wrapper.faq-index-wrapper .accordion-item {
  overflow: hidden;
  margin: 0 0 14px;
  border: 1px solid rgba(15, 39, 71, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 14px 36px rgba(15, 39, 71, .06);
}

.faq-page #faq-wrapper.faq-index-wrapper .accordion-button {
  min-height: 76px;
  gap: 16px;
  color: #102033;
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.faq-page #faq-wrapper.faq-index-wrapper .accordion-button:not(.collapsed) {
  color: #0f4d9f;
  background: #f7fbff !important;
}

.faq-page #faq-wrapper.faq-index-wrapper .accordion-button:focus {
  box-shadow: unset;
}

.faq-question-number {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #023ea5;
  background: #026ee13b;
  font-size: 13px;
  font-weight: 900;
}

.faq-page .accordion-button:not(.collapsed) .faq-question-number {
  color: #ffffff;
  background: linear-gradient(135deg, #0f766e, #026fe2);
}

.faq-page #faq-wrapper.faq-index-wrapper .accordion-body {
  color: #52627a;
  line-height: 1.78;
  padding: 0 28px 26px 82px;
}

.faq-page #faq-wrapper.faq-index-wrapper .accordion-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.faq-page #faq-wrapper.faq-index-wrapper .accordion-body li {
  position: relative;
  padding-left: 24px;
  color: #33465d;
}

.faq-page #faq-wrapper.faq-index-wrapper .accordion-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #0f766e;
  border-bottom: 2px solid #0f766e;
  transform: rotate(-45deg);
}

@media (max-width: 1050px) {
  .faq-hero,
  .faq-answer-layout {
    grid-template-columns: 1fr;
  }

  .faq-hero h1 {
    font-size: 54px;
  }

  .faq-help-card {
    position: static;
  }

  .faq-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .faq-hero,
  .faq-quick-grid {
    width: calc(100% - 28px);
  }

  .faq-hero {
    display: block;
    padding: 58px 0 32px;
  }

  .faq-hero h1 {
    max-width: 340px;
    font-size: 34px;
    line-height: 1.14;
  }

  .faq-hero p,
  .faq-page .title-faq-wrapper p {
    max-width: 340px;
    font-size: 16px;
  }

  .faq-preview-panel {
    min-height: auto;
    margin-top: 34px;
    padding: 18px;
  }

  .faq-preview-window img {
    height: 280px;
  }

  .faq-status-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .faq-quick-grid {
    grid-template-columns: 1fr;
  }

  .faq-page #faq-wrapper.faq-index-wrapper {
    padding: 48px 14px 72px;
  }

  .faq-page #faq-wrapper .title-faq-wrapper h2,
  body.faq-page #faq-wrapper.faq-index-wrapper h2 {
    font-size: 32px;
  }

  .faq-page #faq-wrapper.faq-index-wrapper .accordion-button {
    align-items: flex-start;
    min-height: auto;
    padding: 18px;
    font-size: 16px;
  }

  .faq-question-number {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .faq-page #faq-wrapper.faq-index-wrapper .accordion-body {
    padding: 0 18px 22px;
  }

  .faq-page #faq-wrapper.faq-index-wrapper .accordion-body ul {
    grid-template-columns: 1fr;
  }
}
