:root {
  --primary: #2AA6F8;
  --nile: #19334A;
  --cyan: #96DBED;
  --danger: #dc3545;
  --azure: #D6E1EE;
  --bg-grey: #F1F6FD;
  --chat-blue: #E7EDF5;
  --black: #333333;
  --skeleton-primary: #8da5ff;
  --skeleton: #dde4ff;

  /* TYPO */
  --typography-h1-size: 2.5rem; /* 40px */
  --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.25rem; /* 20px */
  --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: "Inter", 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: 55rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  width: 100%;
  height: 100%;
  z-index: 2;
}

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

.hero-content {
  display: flex;
  gap: 2.5rem;
  height: 100%;
}

.hero-content-left {
  flex: 1;
  width: 55%;
  max-width: 55%;
  padding: 3rem 0 5rem 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.logo .logo-title {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.hero-content-left h1 {
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-content-left h2 {
  font-size: 1.75rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-bar-list {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-bar-item {
  display: flex;
  align-items: center;
}

.hero-bar-item .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .5rem;
  flex-shrink: 0;
  border-radius: 50%;
}

.hero-bar-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bar-item span {
  font-size: 1rem;
  line-height: 1.5rem;
  white-space: nowrap;
}

.hero-content-right {
  position: fixed;
  z-index: 9999;
  right: calc((100% - 75rem) / 2);
  max-width: 460px;
  width: 45%;
  flex-shrink: 0;
  z-index: 3;
  padding: 5rem 0 1.5rem 0;
}

/* CHAT CONTENT */
/* CHAT BLOCK FOR MOBILE */
/* 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;
}

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

.chat {
  width: 100%;
  height: 45rem;
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.25);
}

.chat-head {
  background-color: var(--nile);
  color: #fff;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  padding: 1rem 1.25rem;
}

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


.chat-head h1 {
  color: var(--cyan);
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-bottom: .25rem;
  font-weight: 600;
}

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

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

.expert-avatars .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: -15px;
  object-fit: cover;
  border: 2px solid #fff;
}

.expert-online-text {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 700;
}

.expert-avatars .online-indicator {
  position: absolute;
  right: -1.75rem;
  bottom: -.5rem;
  width: 2rem;
  height: 2rem;
}

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

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

.chat-list {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  gap: 1.25rem;
}

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

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

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

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

.chat-item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.chat-item label {
  font-size: .75rem;
  color: #999999;
}

.chat-item .message {
  white-space: pre-wrap;
  background-color: var(--chat-blue);
  border-radius: 6px;
  color: var(--black);
  padding: .75rem;
}

.chat-item-wrapper.right .chat-item .message {
  margin-left: auto;
  background-color: var(--bg-grey);
  color: var(--black);
}

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

.chat-item .message.typing {
  color: var(--chat-blue);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.chat-item .message.typing span {
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #b7c7ff;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.4;
}

.chat-item .message.typing span:nth-child(1) {
  animation: typing 1s infinite 0s;
}

.chat-item .message.typing span:nth-child(2) {
  animation: typing 1s infinite 0.2s;
}

.chat-item .message.typing span:nth-child(3) {
  animation: typing 1s infinite 0.4s;
}

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

}

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

.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 #CBD6E1;
  border-radius: 0.5rem;
  resize: none;
  min-height: 70px;
}

.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;
}

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

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

/* END CHAT CONTENT */
.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;
}

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

.features-grid {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.feature-icon {
  width: 15.5rem;
  height: 15.5rem;
  padding: 12px;
  background-color: var(--bg-grey);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

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

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

.feature-text {
  font-size: var(--typography-body-size);
  line-height: 1.5rem;
  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;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 2rem;
}

/* Function section */
.function {
  background-color: var(--bg-grey);
  padding: 6rem 0; /* 100px */
}

.function .section-subtitle {
  text-align: center;
}

.function .content {
  width: 50%;
}

.function .section-title {
  text-align: center;
  margin-bottom: .75rem;
  font-weight: 600;
}

.function-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.function-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.function-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.function-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.function-item-text {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

/* Expert section */
.expert {
  padding: 4rem 0;
}

.expert .content {
  width: 50%;
}

.expert .section-title {
  text-align: left;
  margin-bottom: 2rem;
  font-weight: 600;
}

.expert .section-subtitle {
  margin-bottom: 2rem;
  text-align: left;
}

.expert .expert-content {
  display: flex;
  gap: 1.25rem;
}

.expert-item {
  display: flex;
  flex-direction: column;
}

.expert-image {
  width: 184px;
  height: 184px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 1rem;
  align-self: center;
}

.expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-item-name {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: .25rem;
  white-space: nowrap;
}

.expert-item-role {
  font-size: 1rem;
  line-height: normal;
  margin-bottom: .5rem;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating img {
  width: 1rem;
  height: 1rem;
  object-fit: cover;
}

.expert-item-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 1rem;
}

/* BANNER BOTTOM SECTION */
.banner-bottom {
  position: relative;
}

.banner-bottom::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  width: 100%;
  height: 100%;
  z-index: 2;
}

.banner-bottom img {
  height: 626px;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

/* CTA section */
.cta {
  padding: 4rem 0;
  background-color: var(--bg-grey);
}

.cta .content {
  width: 50%;
}

.cta .section-title {
  margin-bottom: 1rem;
}

.cta .section-subtitle {
  margin-bottom: 1rem;
}

.cta-highlight-text {
  font-weight: 500;
}

.cta .btn-chat-now {
  border-radius: .25rem;
  width: 60%;
  font-weight: 700;
}

.cta .btn-chat-now.mobile {
  display: none;
}

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

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

/* Pricing section */
.pricing {
  padding: 4rem 0;
}

.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-item-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 12px;
}

.pricing-item-description {
  font-size: 16px;
  line-height: 1.25;
}

/* Footer */
footer {
  padding: 6rem 0; /* 60px */
}

.footer-company-info {
  margin-bottom: 4px;
  font-size: .75rem;
  line-height: 1.25rem;
  color: #666666;
}

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

.footer-copyright {
  font-size: .75rem;
  line-height: 1.25rem;
  color: #666666;
  margin-top: 24px;
}

.footer-legal {
  display: flex;
  align-items: center;
  font-size: .75rem;
  color: #666666;
  font-weight: 700;
  margin-top: 2rem;
  gap: 2rem;
}

.toggle-legal {
  width: 32px;
  height: auto;
  display: flex;
}

.toggle-legal-toggle img {
  width: 100%;
  height: 100%;
}

.footer-legal-toggle {
  display: flex;
  gap: 4px;
}

.footer-legal button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: .75rem;
  color: #666666;
  font-weight: 700;
}

.footer-tos-list button:hover {
  text-decoration: underline;
}

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

/* 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: 2rem;
  height: 2rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.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 {
  flex: 1;
}

.skeleton-username {
  width: 50%;
}

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

.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;
}

.bubble-chat-button {
  display: none;
}

.bubble-chat-button.hidden {
  display: none;
}

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

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

  .hero-content-left h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .hero-content-left h2 {
    font-size: 18px;
    line-height: 22px;
  }

  .hero-bar-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .features-grid {
    gap: 2rem;
  }

  .feature-icon {
    width: 10rem;
    height: 10rem;
  }
}

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

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

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

  .chat-head {
    padding: .5rem;
  }

  .chat-list {
    padding: .5rem;
  }

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

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

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

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

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
    
  .hero {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    min-height: 45rem;
    height: auto;
  }

  .hero-content {
    padding-top: 0;
    flex: 1;
  }

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

  .hero-content-left {
    padding: 1rem 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;
    margin-bottom: 1rem;
  }

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

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

  .hero-bar-list {
    display: none;
  }

  /* CHAT CONTENT */
  .mobile-chat-block .chat {
    flex: 1;
    min-height: 0;
  }

  .chat-head {
    padding: 1rem;
  }

  .chat-head .online-experts {
    margin-top: .5rem;
  }

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

  .chat-head .expert-avatars .avatar {
    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: 1.5rem;
    height: 1.5rem;
    right: -1.5rem;
  }

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

  .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-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;
  }
 
  .hero-content-right {
    display: none;
  }

  .hero-content-right.chat-modal-wrapper {
    display: flex;
    position: fixed;
    padding-top: 0;
    padding-bottom: 0;
    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;
  }

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

  .chat-modal-wrapper .chat-head {
    border-radius: 0;
    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-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-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 .btn-send {
    width: 100%;
    justify-content: center;
  }

  .chat-modal-wrapper .chat-suggestions-online {
    display: flex;
    margin-top: 1.5rem;
  }

  .chat-suggestions-online .expert-avatars img {
    width: 2rem;
    height: 2rem;
  }

  .chat-suggestions-online .expert-count span {
    color: #696868;
  }

  .chat-suggestions-online .online-indicator {
    width: .5rem;
    height: .5rem;
  }

  .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 .section-title {
    text-align: center;
  }

  .features-grid {
    width: 100%;
  }

  .feature-card {
    margin-bottom: 1.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-text {
    text-align: center;
  }

  .pricing-content {
    width: 100%;
  }

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

  .function-content {
    grid-template-columns: 1fr 1fr;
  }

  .function .content {
    width: 100%;
  }

  .expert .content {
    width: 100%;
  }

  .expert .section-title {
    text-align: center;
  }

  .expert .section-subtitle {
    text-align: center;
  }
  
  .expert .expert-content {
    flex-direction: column;
  }

  .expert-item {
    align-items: center;
  }

  .expert-image {
    width: 132px;
    height: 132px;
  }

  .expert-item-description {
    text-align: center;
  }

  .cta .content {
    width: 100%;
  }

  .cta .section-title, .cta .section-subtitle, .cta-highlight-text {
    text-align: center;
  }

  .cta .btn-chat-now {
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .footer-content {
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
  
  .bubble-chat-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  .bubble-chat-button img {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .bubble-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .cta .btn-chat-now {
    width: 100%;
  }

  .cta .btn-chat-now.mobile {
    display: block;
  }

  .cta .btn-chat-now.md {
    display: none;
  }
}

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

  .hero-text h1,
  .section-title {
    font-size: 2rem;
  }

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

  .function-content {
    grid-template-columns: 1fr;
  }

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

  .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) {}

@media screen and (max-height: 768px) and (max-width: 642px) {}

/* 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;
  }
}

@keyframes typing {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}