:root {
  --primary: #2c5ff8;
  --danger: #dc3545;
  --black: #131313;
  --gray: #fafafa;
  --grey-text: #b3b3b3;
  --light-blue: #0099ff;
  --chat-blue: #e8f3ff;
  --skeleton-primary: #8da5ff;
  --skeleton: #dde4ff;
  --success-green: #05CA89;
  --yellow: #FFB800;

  /* TYPO */
  --typography-h1-size: 3rem; /* 48px */
  --typography-h1-line-height: normal;

  --typography-h2-size: 2rem; /* 32px */
  --typography-h2-line-height: normal;

  --typography-h3-size: 1.5rem; /* 24px */
  --typography-h3-line-height: normal;

  --typography-h4-size: 1.125rem; /* 18px */
  --typography-h4-line-height: normal;

  /* Body Typography */
  --typography-body-size: 1rem; /* 16px */
  --typography-body-line-height: normal;

  /* UI Element Typography */
  --typography-label-size: 0.875rem; /* 14px */
  --typography-label-line-height: normal;

  --typography-footer-size: 0.75rem; /* 12px */
  --typography-footer-line-height: normal;
}

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

html,
body {
  color: var(--black);
  font-size: 16px; /* Base font size for desktop */
  line-height: var(--typography-body-line-height);
}

.hidden {
  display: none !important;
}

.original-text {
  white-space: pre-wrap;
}

.block-scroll {
  height: 100vh;
  overflow: hidden;
}
.blur {
  filter: blur(4px);
}

.animate-in {
  animation: fadeIn 0.3s forwards;
}

.container {
  width: 100%;
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
  padding: 0 1rem; /* 8px */
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem; /* 24px */
  text-decoration: none;
  border-radius: 1rem; /* 4px */
  margin-top: 1.25rem; /* 20px */
  font-size: var(--typography-body-size);
  line-height: var(--typography-body-line-height);
  font-weight: 500;
  width: 80%;
  height: 3.375rem; /* 54px */
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 61.1875rem; /* 979px */
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}

/* Mobile Chat Block */
.mobile-chat-block {
  display: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  border-radius: 0.75rem;
  overflow: hidden;
  max-height: 600px;
}

.mobile-chat-block .chat {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  overflow: hidden;
}

/* Mobile Chat Input Wrapper */
.mobile-chat-block .chat-input-wrapper {
  padding: 0.75rem;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.mobile-chat-block .chat-input-group {
  margin-bottom: 0;
}

.mobile-chat-block .btn-send {
  width: 100%;
}

.mobile-chat-block .chat-footer {
  padding: .5rem 0;
}
  

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-content-left {
  flex: 1;
  width: 55%;
  max-width: 55%;
  padding-top: 3rem;
  z-index: 3;
}

.hero-content-right {
  position: fixed;
  z-index: 9999;
  right: calc((100% - 75rem) / 2);
  max-width: 500px;
  width: 45%;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}

.hero.final {
  height: 35rem; /* 979px */
  background-position: center;
}

.hero.final .hero-content-left {
  max-width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero.final .hero-content-left h1 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-bottom: 2rem;
}

.hero.final .hero-content-left h2 {
  font-size: 1rem;
  line-height: 22px;
  margin-bottom: 56px;
}

.hero.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 41, 164, 0.7);
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero .logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: .25rem;
}

.logo img {
  height: 2.625rem;
  width: 2.625rem;
  object-fit: cover;
}

.logo .logo-title {
  font-size: 2rem;
  font-weight: bold;
  text-transform: capitalize;
}

.hero-content-left h1 {
  font-size: var(--typography-h1-size);
  line-height: var(--typography-h1-line-height);
  margin-bottom: 0.625rem; /* 10px */
  font-weight: 500;
}

.hero-content-left h2 {
  font-size: var(--typography-h2-size);
  line-height: var(--typography-h2-line-height);
  font-weight: 400;
  margin-bottom: 1.25rem; /* 20px */
}

.hero-text p.highlight {
  font-size: var(--typography-h3-size);
  line-height: var(--typography-h3-line-height);
}

.hero-content-left .link {
  background-color: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem; /* 24px */
  text-decoration: none;
  border-radius: .5rem; /* 100px */
  margin-top: 5rem; /* 20px */
  font-size: var(--typography-body-size);
  line-height: var(--typography-body-line-height);
  font-weight: 500;
  width: 100%;
  height: 3.375rem; /* 54px */
  border: none;
  cursor: pointer;
}

.hero.final .hero-text {
  max-width: 80%;
}

.hero.final .hero-text .link {
  margin-top: 3rem;
  width: 60%;
}

.link span {
  margin-left: 0.75rem;
}

.search-container {
  display: none;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.search-container-left {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
  width: 100%;
}

.search-container .btn-primary {
  height: 50px;
  margin-top: 2rem;
  gap: .5rem;
}

.search-container .btn-primary .icon {
  font-size: 1.5rem;
}

.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  gap: 0.5rem;
  border: 1px solid #696868;
  position: relative;
}

.search-box .icon {
  font-size: 1.5rem;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
}

.search-box input::placeholder {
  color: var(--grey-inactive);
}

.placeholder-text {
  color: var(--grey-text);
  font-size: 0.75rem;
}

.chat {
  width: 100%;
  height: 45rem;
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chat-head {
  background-color: var(--primary);
  color: #fff;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;

}

.btn-close-chat-mobile {
  display: none;
}

.btn-close-chat {
  display: none;
}

.chat-head .recap-avatar {
  display: flex;
}

.chat-head .online-experts {
  display: none;
}

.chat-info-header {
  margin-bottom: 0.625rem;
}

.chat-info h4 {
  font-size: 1.125rem;
  line-height: 1rem;
}

.chat-info .description {
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 400;
}

.chat-body {
  background-color: rgb(255, 255,255, 0.4);
  flex: 1;
  min-height: 0;
}

.chat-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--grey-text);
  margin: auto;
  gap: 0.5rem;
}


.chat-suggestions {
  padding: 1.25rem 2rem;
  display: none;
}

.chat-suggestions-title {
  font-weight: 400;
  line-height: 1.25rem;
  margin-bottom: .75rem;
  color: #696868;
}

.chat-suggestions-categories {
  gap: .75rem;
  flex-direction: column;
  align-items: flex-start;
}

.chat-list {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 2rem;
  gap: 1.25rem;
  height: 100%;
  overflow: auto;
}

.chat-item-wrapper {
  box-shadow: 0 5px 20px var(--grey-text);
  border-radius: 0.75rem;
  max-width: 100%;
  align-self: flex-start;
}

.chat-item-wrapper.right {
  align-self: flex-end;
}

.chat-item {
  background-color: var(--chat-blue);
  color: var(--black);
  padding: 0.75rem 2rem;
  display: flex;
  border-radius: 0.75rem;
  position: relative;
}

.chat-item .message {
  white-space: pre-wrap;
}

.chat-item-wrapper.right .chat-item {
  background-color: #fff;
  margin-left: auto;
}

.chat-item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: .5rem solid transparent;
  border-bottom: .5rem solid transparent;
  border-right: 1rem solid var(--chat-blue);
  left: -.75rem;
  top: 50%;
  transform: translateY(-50%);
}

.chat-item-wrapper.right .chat-item::before {
  border-right: 0;
  border-top: .5rem solid transparent;
  border-bottom: .5rem solid transparent;
  border-left: 1rem solid #fff;
  left: auto;
  right: -.75rem;
}

.chat-item-avatar {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 2rem;
  position: relative;
}

.chat-item-avatar::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #05ca89;
  bottom: 0.125rem;
  right: -0.125rem;
}

.chat-item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.chat-item-message {
  display: flex;
  flex-direction: column;
}

.chat-item-wrapper.right .chat-item-message {
  align-items: flex-end;
}

.chat-item-message label {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  margin-bottom: 0.625rem;
}

.chat-item-message .message.typing {
  color: #b7c7ff;
}

.chat-input-wrapper {
  color: var(--black);
  background-color: rgb(255, 255,255, 0.7);
  padding: 1rem 1.25rem;

}

.chat-input-group {
  position: relative;
  min-height: 3.75rem;
  margin-bottom: 1.5rem;
}

.chat-input-group textarea {
  border: 1px solid transparent;
  min-height: 100%;
  width: 100%;
  padding: .75rem 1rem;
  font-size: 1rem;
  transition: 0.15s ease-in-out;
  border: 1px solid #131313;
  border-radius: 0.5rem;
  resize: none;
}

.chat-input-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.chat-input-group .placeholder-text {
  color: var(--black);
  font-size: .75rem;
  margin-top: .5rem;
}

.chat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.online-experts {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.expert-avatars {
  position: relative;
  display: flex;
}

.expert-avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: -15px;
  object-fit: cover;
}

.expert-count {
  margin-left: .75rem;
}

.expert-count span {
  font-size: .75rem;
}

.online-indicator {
  position: absolute;
  right: -1rem;
  bottom: 0;
  width: 16px;
  height: 16px;
  background-color: var(--success-green);
  border-radius: 50%;
}


.btn-send {
  background-color: var(--yellow);
  border-radius: 0.5rem;
  border: 0;
  color: var(--black);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  min-width: 7.25rem;
  font-size: 1rem;
  height: 3rem;
}

.btn-send.reverse {
  background-color: var(--primary);
  color: #fff;
}

.btn-send img {
  width: 1.5rem;
  height: 1.5rem;
}

.chat .online {
  display: flex;
}

.recap-title {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: .5rem;
  display: block;
}

.btn-continue {
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: .75rem;
  font-size: 1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  width: 100%;
  height: 3rem;
  min-height: inherit;
}

.btn-continue:hover {
  cursor: pointer;
}

.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(44, 95, 248, 0.6);
  z-index: 3;
}

.hero-bar-list {
  display: flex;
  align-items: center;
  padding: 1.625rem 0; /* 26px */
}

.hero-bar-item {
  display: flex;
  align-items: center;
  margin-right: 2.5rem; /* 40px */
}

.hero-bar-item .icon {
  width: 2.625rem; /* 42px */
  height: 2.625rem; /* 42px */
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 1.625rem; /* 26px */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bar-item .icon img {
  width: 1.5rem; /* 24px */
  height: 1.5rem; /* 24px */
}

.hero-bar-item span {
  font-size: var(--typography-h4-size);
  line-height: var(--typography-h4-line-height);
}

.hero-text .link:hover {
  text-decoration: none;
  color: #fff;
}

/* Features Section */
.features {
  padding: 4rem 0; /* 64px */
}

.features-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 6.25rem; /* 100px */
}

.feature-card {
  width: 40%;
}

.feature-icon {
  width: 7.75rem; /* 124px */
  height: 7.75rem; /* 124px */
  border-radius: 50%;
  background-color: #e9ecef;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-title {
  font-size: 1.75rem;
  line-height: 2rem;
  margin-bottom: 1.25rem; /* 20px */
  font-weight: 500;
}

.feature-text {
  font-size: var(--typography-body-size);
  line-height: var(--typography-body-line-height);
  font-weight: 400;
}

.section-title {
  font-size: var(--typography-h1-size);
  line-height: var(--typography-h1-line-height);
  margin-bottom: 2rem; /* 10px */
  font-weight: 500;
}

/* How it works section */
.how-it-works {
  background-color: #F7F7F7;
  padding: 6rem 0; /* 100px */
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
}

.steps .step {
  width: 40%;
}

.steps .step h3 {
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 500;
  margin-bottom: .25rem;
}

.steps .step p {
  font-size: var(--typography-body-size);
  line-height: var(--typography-body-line-height);
  font-weight: 400;
}

/* Pricing section */
.pricing {
  margin-top: 4rem;
}

.pricing h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing .sub-title {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.pricing-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-item {
  border: 1px solid #DED8E1;
  border-radius: 12px;
  padding: 4rem 2rem;
}

.pricing-caption {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 10px;
}

.pricing-price {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  font-weight: 500;
  margin-bottom: 2rem;
}

.pricing-price .price {
  font-size: 48px;
  line-height: 48px;
  font-weight: 500;
}

.pricing-text-included {
  font-weight: 500;
  margin-bottom: 2rem;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.pricing-list li i {
  font-size: 1.5rem;
}

.pricing-list li.active {
  color: var(--blue-primary);
}

.pricing-item-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 12px;
}

.pricing-item-description {
  font-size: 16px;
  line-height: 1.25;
}
/* Why section */
.why-section {
  padding: 6rem 0; /* 100px */
}

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

.why-item {
  display: flex;
  align-items: center;
  gap: .75rem
}

.why-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  overflow: hidden; 
  background-color: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: cover;
}

/* Credentials section */
.credentials {
  margin-bottom: 2.5rem;
}
.credentials-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  width: 100%;
}

.credentials-container .credential {
  height: 64px;
  width: auto;
}

.credentials-container .credential img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.credential.credential-bb {
  height: 48px;
}

.credentials-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;}

.credential-title {
  font-size: .75rem;
}

.separated {
  border-top: 1px solid #DED8E1;
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}

.btn-cta-final-mobile {
  display: none;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: #fff;
  padding: 4rem 0; /* 60px */
}

.footer-content-top {
  display: flex;
  flex-direction: column;
}

.footer-company-info {
  margin-bottom: 4px;
}

.footer-company-info.information {
  margin-top: 24px;
}

.copyright {
  margin-top: 24px;
}

.footer-content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content-top .logo{
  display: flex;
  align-items: center;
  gap: .25rem;
}

.footer-links a {
  margin-left: 0.9375rem; /* 15px */
  text-decoration: none;
  color: #fff;
}

.footer-links a:hover {
  text-decoration: none;
  color: #fff;
}

.footer-separate {
  height: 0.0625rem; /* 1px */
  width: 100%;
  background-color: var(--grey-text);
  margin: 1.625rem 0; /* 26px */
}

.footer-tos-list {
  display: flex;
  list-style: none;
  gap: 1.875rem; /* 30px */
}

.footer-tos-list h5 {
  font-weight: bold;
}

.footer-tos-list li a {
  color: #fff;
  text-decoration: none;
}

.footer-tos-list li button {
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.footer-tos-list li a:hover {
  text-decoration: none;
}

.footer-content-bottom .disclaimer-cta {
  cursor: pointer;
}

.footer-content-bottom .disclaimer-cta:hover {
  text-decoration: underline;
}

.footer-author {
  font-weight: 700;
  margin-top: 48px;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.legal-link {
  text-decoration: underline;
  color: var(--grey-text);
  cursor: pointer;
}

.chat-input-group .legal-link {
  color: var(--black);
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: 0; /* Firefox */
}

/* Dialog */
.dialog-overlay,
.notify {
  inset: 0px;
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.15s ease-in-out;
  background-color: #fff;
}

.notify {
  background-color: rgb(19, 19, 19, 0.5);
  z-index: 10000;
}

.notify .dialog-content {
  position: relative;
  background-color: #fff;
  border-radius: 0.5rem;
}

.notify .dialog-head {
  padding: 2rem 2.5rem;
  background-color: #fafafa;
  color: #131313;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.dialog-head .online {
  display: flex;
}

.dialog-head .online-info h4 {
  font-weight: normal;
  margin-bottom: 0.25rem;
}
.dialog-head .online-info p {
  font-size: var(--typography-label-size);
  line-height: var(--typography-label-line-height);
}

.notify .dialog-body {
  padding: 2rem 2.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.notify .recap-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.notify .recap-avatar {
  width: 7.5rem;
  height: 7.5rem;
  margin-bottom: 1.25rem;
}

.notify .recap-info h4 {
  font-size: var(--typography-h3-size);
  line-height: var(--typography-h3-line-height);
  margin-bottom: 0.75rem;
}

.notify .recap-info p {
  font-size: var(--typography-body-size);
  line-height: var(--typography-body-line-height);
}

.notify .recap-rate {
  justify-content: center;
}

.notify .stars svg path {
  color: #131313;
}

.notify h2 {
  font-size: var(--typography-h3-size);
  line-height: var(--typography-h2-line-height);
  max-width: 30rem;
  width: 100%;
  text-align: center;
  margin: 3rem auto;
}

.notify .separator {
  height: 1px;
  background-color: var(--grey-text);
  width: 100%;
  margin-bottom: 3rem;
}

.notify .btn-primary {
  width: 100%;
  margin: 3rem 0;
}

.dialog-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: white;
}

.btn-close-dialog {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.btn-close-dialog:hover {
  background-color: var(--grey-text);
}

.btn-close-dialog svg {
  width: 1.5rem;
  height: 1.5rem;
}

.dialog-body {
  width: 100%;
  height: 100%;
  overflow: auto;
}

/* Form section */
.form-section {
  position: relative;
  min-height: 100vh;
}

.form-section .container {
  height: 100%;
}

.form-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 2rem;
  max-width: 50%;
}

.form-title {
  font-size: var(--typography-h2-size);
  line-height: var(--typography-h2-line-height);
  margin-bottom: 1rem;
}

.form-subtitle {
  font-size: var(--typography-h4-size);
  line-height: var(--typography-h4-line-height);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.form-banner {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  filter: blur(8px);
}

.form-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-recap {
  border-radius: 1.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.form-recap-head {
  background-color: var(--primary);
  color: #fff;
  padding: 1.25rem;
  display: flex;
}

.recap-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1rem;
  background-color: var(--grey-text);
  position: relative;
}

.recap-avatar .image-avatar {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.recap-avatar .shield {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.recap-info h4 {
  font-size: var(--typography-h4-size);
  line-height: 1rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.recap-list {
  font-size: 1rem;
  font-weight: 400;
}

.recap-info p {
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 0.625rem;
}

.recap-rate {
  display: flex;
  align-items: center;
}

.stars {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-right: 2px;
}

.stars li {
  margin-right: 2px;
}

.stars li:last-child {
  margin-right: 0;
}

.stars svg {
  width: 1.125rem;
  height: 1.125rem;
}

.recap-rate p {
  font-size: 0.75rem;
  line-height: 1rem;
  margin-bottom: 0;
}

.form-recap-body {
  padding: 1.25rem 0.5rem;
}

.form-recap-body ul {
  padding-left: 1.5rem;
}

.form-recap-body li {
  padding: 0.25rem 0;
}

.form-recap-body h4 {
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.625rem;
}

.form-recap-body .message {
  font-size: 1.125rem;
  line-height: normal;
}

.form-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading {
  animation: spin 1s linear infinite;
  color: var(--primary);
}

.form-wrapper .online {
  display: flex;
  align-items: center;
  margin: 3rem 0;
}

.avatars {
  position: relative;
  height: 2.8175rem;
  padding-left: calc(2.8175rem * 3);
}

.avatars .avatar {
  width: 2.8175rem;
  height: 100%;
  border-radius: 50%;
  background-color: var(--grey-text);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.avatars .avatar:nth-child(2) {
  left: 2rem;
}

.avatars .avatar:nth-child(3) {
  left: 4rem;
}

.online-info h4 {
  font-size: var(--typography-h4-size);
  line-height: var(--typography-h4-line-height);
  font-weight: 500;
  color: var(--primary);
}

.online-info p {
  line-height: 2rem;
}

.form-separator {
  height: 1px;
  background-color: var(--grey-text);
  width: 100%;
}

.form-brand {
  height: 5rem;
  width: 60%;
  margin: 1rem auto 0;
}

.form-brand img {
  width: 100%;
  max-width: 100%;
}

/* Chat Skeleton */
.skeleton {
  background-color: var(--skeleton);
  border-radius: 0.75rem;
  height: 1rem;
}

.skeleton-primary {
  background-color: var(--skeleton-primary);
  border-radius: 0.75rem;
  height: 1rem;
}

/* Chat Head Skeleton */
.chat-head-skeleton {
  display: flex;
  align-items: center;
  width: 100%;
}

.skeleton-avatar {
  width: 5.375rem;
  height: 5.375rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1rem;
}

.skeleton-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.625rem;
}

.skeleton-name {
  width: 60%;
}

.skeleton-description,
.skeleton-rate {
  width: 80%;
}

/* Chat Body Skeleton */
.skeleton-message {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.chat-item-wrapper-skeleton {
  width: 80%;
}

.chat-item-skeleton {
  display: flex;
  align-items: center;
}

.chat-item-skeleton .skeleton-avatar {
  width: 3.75rem;
  height: 3.75rem;
}

.skeleton-username {
  width: 50%;
}

.skeleton-message-content {
  width: 100%;
}

.skeleton-online {
  display: flex;
  align-items: center;
}

.skeleton-online .skeleton-avatar {
  width: 2.875rem;
  height: 2.875rem;
  margin-right: 0.25rem;
}

.skeleton-online-content {
  flex: 1;
}

.skeleton-online-content-1 {
  width: 20%;
  margin-bottom: 0.25rem;
}

.skeleton-online-content-2 {
  width: 40%;
}

.tooltip-container {
  position: relative;
  width: 100%;
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--black);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tooltip.visible {
  opacity: 1;
  visibility: visible;
}

.tooltip-arrow {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid var(--black);
}

.form-legal {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 1rem;
}
.form-legal span {
  text-decoration: underline;
}
.form-legal span:hover {
  cursor: pointer;
}

@media (max-width: 1400px) {}

@media(max-width: 1200px) {
  .hero-content-left {
    max-width: 50%;
  }
  .hero-content-right {
    right: 1rem;
  }
}

@media (max-width: 1024px) {
  .hero {
    height: 57rem;
  }

  .form-wrapper {
    max-width: 100%;
  }

  .form-banner {
    display: none;
    /* position: relative; */
  }

  .chat-head {
    padding: 1rem;
  }

  .chat-list {
    padding: 1rem;
  }

  .chat-input-wrapper {
    padding: 1rem;
    margin-bottom: 0;
  }

  .pricing-item {
    padding: 2rem 1rem;
  }
}

@media (max-width: 768px) {
  html,
  body {
    font-size: 14px;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .logo .logo-title {
    font-size: 16px;
    font-weight: 600;
  }

  .hero {
    height: calc(var(--vh, 100%));
    padding: 1rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-content {
    padding-top: 0;
    flex-direction: column;
    height: 100%;
  }

  .hero-content-left {
    padding-top: 0;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }

  .hero-content-left h1 {
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
  }

  .hero-content-left h2 {
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
  }

  .hero-content-left .logo {
    margin-bottom: 0.5rem;
  }

  .hero-content-left .link {
    display: none;
  }

  .mobile-chat-block {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }
  
  .mobile-chat-block .chat {
    height: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.25);
  }

  .mobile-chat-block .chat-body {
    background-color: #fff;
  }
  
  .mobile-chat-block.chat-modal-wrapper {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
  }
  
  .mobile-chat-block .chat {
    border-radius: 0;
    height: 100%;
  }
  
  .mobile-chat-block .chat-head {
    border-radius: 0;
    gap: .5rem;
    flex-wrap: wrap;
  }

  .chat-head .online-experts {
    margin-top: .5rem;
    display: flex;
    width: 100%;
  }

  .chat-head .recap-avatar {
    margin-right: 0;
  }

  .chat-head .expert-avatars img {
    width: 2rem;
    height: 2rem;
    margin-right: -12px;
  }

  .chat-head .expert-count {
    font-size: .75rem;
    white-space: nowrap;
    margin-left: .5rem;
    display: flex;
    gap: 2px;
  }

  .chat-head .online-indicator {
    width: .75rem;
    height: .75rem;
  }

  .hero-bar {
    display: none;
  }
 
  .hero-content-right {
    display: none;
  }

  .hero-content-right.chat-modal-wrapper {
    display: flex;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 999;
  }

  .hero.final .hero-content-left {
    max-width: 100%;
  }

  .hero.final .hero-text {
    max-width: 100%;
    margin-bottom: 0;
  }

  .search-container {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
  }
  
  .example-queries {
    display: none;
  }

  .search-container .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .chat-modal-wrapper .chat {
    border-radius: 0;
  }

  .chat-modal-wrapper .chat-head {
    border-radius: 0;
    gap: .5rem;
    flex-wrap: wrap;
  }

  .chat-body {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    overflow: auto;
  }

  .chat-list {
    gap: .75rem;
    margin-top: auto;
    height: auto;
  }

  .chat-modal-wrapper .chat-input-wrapper {
    background-color: #fafafa;
  }

  .chat-modal-wrapper .chat-footer {
    padding-top: 10px;
    padding-bottom: 0;
  }

  .chat-modal-wrapper .btn-send {
    border-radius: .5rem;
    padding: .75rem 1rem;
  }

  .chat-modal-wrapper .chat-head {
    padding-left: 4rem;
  }

  .btn-close-chat-mobile {
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .btn-close-chat-mobile img {
    width: 2rem;
    height: 2rem;
  }

  .chat-modal-wrapper .chat-item {
    background-color: #f7f7f7;
    padding: 1rem 1.375rem;
  }

  .chat-modal-wrapper .chat-item::before {
    border-right-color: #f7f7f7;
  }

  .chat-modal-wrapper .chat-input-group {
    margin-bottom: 0;
  }

  .chat-modal-wrapper .chat-input-group textarea {
    min-height: 100px;
  }

  .chat-modal-wrapper .chat-input-group .placeholder-text {
    display: none;
  }

  .chat-modal-wrapper .chat-footer .online-experts {
    display: none;
  }

  .chat-modal-wrapper .chat .btn-send {
    width: 100%;
    justify-content: center;
  }

  .chat-info .description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .features {
    padding: 2rem 0;
  }

  .features-grid {
    flex-direction: column;
  }

  .feature-card {
    margin-bottom: 1.875rem;
    width: 100%;
  }

  .pricing-content {
    width: 100%;
  }

  .pricing-item {
    padding: 3rem 2rem;
  }

  .steps .step {
    width: 100%;
  }

  .credentials-content {
    width: 100%;
  }

  .credentials-container {
    gap: 1.5rem;
  }

  .support {
    flex-direction: column;
    align-items: center;
  }

  .support-item {
    margin-bottom: 0.9375rem; /* 15px */
  }

  .btn-cta-final-mobile {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-cta-final-md {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    margin: 0.9375rem 0; /* 15px */
  }
}

@media (max-width: 642px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .feature-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }

  .hero-text p,
  .hero-text p.highlight {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .hero-text .link {
    display: none;
  }

  .btn-cta-final-mobile{
    margin-top: 1rem;
    width: 100%;
    margin-bottom: 1rem;
  }

  .chat {
    height: 100%;
  }

  .search-container {
    margin-top: 4rem;
  }

  .section-subtitle {
    max-width: 100%;
  }

  .footer-content-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }

  .footer-links a {
    margin-top: 10px;
    margin-left: 0;
  }

  .footer-content-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-tos-list {
    margin-top: 1rem;
    flex-direction: column;
    gap: 10px;
  }

  .notify {
    padding: 1rem;
    align-items: flex-start;
  }

  .notify .dialog-content {
    width: 100%;
  }

  .notify .dialog-head {
    padding: 1.5rem 1rem;
  }

  .notify .dialog-body {
    padding: 1.5rem 1rem;
  }

  .notify .recap-avatar {
    width: 5rem;
    height: 5rem;
  }

  .notify h2 {
    margin: 2rem auto;
  }

  .notify .separator {
    margin-bottom: 2rem;
  }

  .notify .btn-primary {
    margin: 2rem 0;
  }

  .form-wrapper {
    padding-top: 1rem;
  }

  .form-title {
    font-size: var(--typography-h3-size);
    line-height: var(--typography-h3-line-height);
  }

  .form-subtitle {
    margin-bottom: .75rem;
    font-size: var(--typography-h4-size);
    line-height: var(--typography-h4-line-height);
  }

  .form-recap-head {
    padding: .5rem;
  }

  .form-control .control {
    height: 3rem;
  }
}

@media screen and (max-height: 768px) and (max-width: 1024px) {
  /* .chat {
    height: 80vh;
  } */
}

@media screen and (max-height: 768px) and (max-width: 642px) {
  /* .chat {
    max-height: 68vh;
  } */
}

@media screen and (max-width: 375px) {
  .credentials-container {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
