:root {
  /* VetConnect Brand Colors - Updated to match Figma */
  --primary: #18181b;
  --primary-light: #f4f4f5;

  --danger: #dc3545;

  /* Icon Background Colors */
  --vc-blue-bg: #eff6ff;
  --vc-purple-bg: #faf5ff;
  --vc-orange-bg: #fff7ed;
  --vc-emerald-bg: #ecfdf5;

  /* Text Colors */
  --vc-text-primary: #18181b;
  --vc-text-secondary: #333333;
  --vc-text-muted: #71717b;
  --vc-text-body: #52525c;
  --vc-text-label: #4a5565;
  --vc-text-detail: #364153;
  --vc-text-price: #6a7282;

  /* Border Colors */
  --vc-border: #e4e4e7;
  --vc-zinc-900: #18181b;
  --vc-zinc-950: #09090b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-variant-ligatures: none;
}

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 {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.hidden-mobile {
  display: block;
}

.hidden-desktop {
  display: none;
}

.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;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  width: 80%;
  height: 3.375rem;
  border: none;
  cursor: pointer;
}

/* Header */
header {
  background: #FFFFFFCC;
  border-bottom: 1px solid #E4E4E7CC
}

.logo-wrapper {
  display: flex;
  justify-content: space-between;
}

.logo-wrapper div {
  display: flex;
  align-items: center;
  padding: 16px 0;
}

.logo-wrapper a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
}

.logo-wrapper a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.logo span {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
}

.logo img {
  height: 36px;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 12px;
  border-radius: 14px;
  background-color: var(--primary);
}

.product-logo {
  background: none !important;
  border-radius: 0 !important;
}

/* Hero Section */
.hero {
  height: calc(var(--vh, 100vh));
  color: var(--vc-text-secondary);
  position: relative;
  overflow: hidden;
  background: linear-gradient(129deg, #19334A 24.97%, #50609A 75.61%);
}

.hero.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #FAFAFA80;
  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;
  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%;
  margin-right: 2.5rem;
}

.hero-btn-cta {
  color: #fff;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 12px 32px;
  width: auto;
  height: 44px;
  border: none;
  cursor: pointer;
}

.hero-content-left-text {
  margin-top: auto;
  margin-bottom: auto;
}

.hero-content-left h1 {
  font-weight: 400;
  font-size: 48px;
  line-height: 75px;
  letter-spacing: -0.5px;
}

.hero-content-left h2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  color: var(--vc-text-body);
  margin: 16px 0 24px;
}

.hero-content-left .hero-description {
  font-size: 18px;
  line-height: 29.25px;
  color: var(--vc-text-body);
  margin-bottom: 24px;
  font-weight: 400;
}


.hero-content-right {
  position: fixed;
  top: 12rem;
  right: 80px;
  z-index: 9999;
  max-width: 460px;
  width: 45%;
  max-height: 600px;
  height: 600px;
  flex-shrink: 0;
  z-index: 99;
}

/* Stats Section */
.stats-section {
  padding: 64px 0;
  background: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: 50%;
}

.stat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: #FFFFFF1A;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.stat-icon img {
  width: 28px;
  height: 28px;
}

.stat-number {
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  color: #fff;
  margin-bottom: 4px;
}

.stat-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #D4D4D8;
  margin-bottom: 4px;
  text-align: center;
}

.stat-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--vc-text-muted);
  text-align: center;
}

/* Step by Step Section */
.step-by-step-section {
  padding: 94px 0;
  background: #ffffff;
}

.step-by-step-heading {
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  color: var(--vc-text-primary);
  margin-bottom: 64px;
  text-align: left;
}

.step-by-step-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 50%;
}

.step-by-step-card {
  background: #ffffff;
  border: 1px solid var(--vc-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-by-step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: #3F3F46;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  flex-shrink: 0;
}

.step-by-step-content {
  display: flex;
  flex-direction: column;
}

.step-by-step-card h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  margin-bottom: 6px;
  color: #3F3F46;
}

.step-by-step-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  color: var(--vc-text-body);
}


/* What Sets Us Apart Section */
.what-sets-us-apart-section {
  padding: 94px 0;
  background: #18181b;
  color: #ffffff;
}

.what-sets-us-apart-content {
  width: 50%;
}

.what-sets-us-apart-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.section-badge {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18181b;
}

.what-sets-us-apart-section h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  color: #ffffff;
  margin: 0;
}

.what-sets-us-apart-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  max-width: 600px;
  position: relative;
}

.feature-card {
  border: 1px solid #E4E4E7CC;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  height: 280px;
}

.feature-card::before {
  background: linear-gradient(0deg, rgba(24, 24, 27, 0.95) 0%, rgba(24, 24, 27, 0.7) 50%, rgba(24, 24, 27, 0.3) 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.feature-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

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

.feature-content {
  position: absolute;
  z-index: 3;
  top: 60%;
  left: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}

.feature-card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
}


/* Testimonials Section - Updated */
.testimonials-section {
  padding: 94px 0;
  background: #ffffff;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  color: var(--vc-text-primary);
  margin-bottom: 16px;
}

.testimonials-header p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--vc-text-body);
  max-width: 700px;
  margin: 0 auto;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
  }

  .step-by-step-grid {
    width: 100%;
  }

  .what-sets-us-apart-content {
    width: 100%;
  }

  .step-by-step-section {
    padding: 64px 0;
  }

  .step-by-step-heading {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .step-by-step-card {
    padding: 24px;
  }

  .what-sets-us-apart-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .what-sets-us-apart-section,
  .testimonials-section {
    padding: 64px 0;
  }

  .what-sets-us-apart-section h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .testimonials-header h2 {
    font-size: 28px;
    line-height: 36px;
  }
}


/* Offer Section */
.offer-section {
  padding: 94px 0;
  background: #ffffff;
}

.offer-content-wrapper {
  display: flex;
  justify-content: flex-start;
}

.offer-content {
  width: 50%;
}

.offer-content h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.3691px;
  color: var(--vc-text-primary);
  margin-bottom: 16px;
}

.offer-description {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: var(--vc-text-muted);
  margin-bottom: 64px;
  max-width: 621px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--vc-border);
  border-radius: 24px;
  padding: 24px;
  max-width: 621px;
  margin-bottom: 24px;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.pricing-caption {
  font-weight: 400;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: 0%;
  color: var(--vc-text-secondary);
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: normal;
  color: var(--vc-text-secondary);
}


.pricing-item-description {
  margin-top: 12px;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  color: var(--vc-text-secondary);
}


.pricing-features {
  margin-bottom: 24px;
}

.pricing-additional-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--vc-text-secondary);
  margin-top: 64px;
}

.features-label {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: var(--vc-text-secondary);
  margin-bottom: 24px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.features-list li img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.features-list li span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: var(--vc-text-detail);
}




/* CHECKOUT */
.checkout-inner-container {
  background: white;
  padding-left: 16px;
  padding-right: 16px;
  width: 50%;
}

.checkout-outer-container h2 {
  color: #000;
  font-size: 24px;
  letter-spacing: .15px;
  line-height: 20px;
  text-align: left;
  font-weight: 700;
  padding: 32px 0 8px;
}

.checkout-container {
  background-color: white;
  padding: 16px 12px;
}

.checkout-form-loader {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

/* Mobile Chat Input Wrapper */
.mobile-chat-block .chat-input-wrapper {
  border-top: 1px solid var(--vc-border);
}

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

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

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

.chat {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.25);
  background-color: #fff;
}

.chat-head {
  background: var(--primary);
  color: #fff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 16px 24px;
}

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

.chat-head h1 {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: .5px;
  font-weight: 400;
}

.expert-wrapper {
  display: flex;
  align-items: center;
}

.expert-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .2);
  margin-right: 12px;
}

.expert-avatar::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #5EE9B5;
}

.expert-online-text {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #9F9FA9;
}

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

.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: 24px;
}

.chat-item-wrapper {
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.chat-item-wrapper:last-child {
  margin-bottom: 0;
}

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

.chat-item-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  margin-right: 12px;
}

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

.chat-item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0px 1px 3px 0px #0000001A;
  padding: 12px 16px;
  border-radius: 12px;
  border-top-left-radius: 6px;
}

.chat-item label {
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  color: #333333;
  margin-bottom: 4px;
}

.right .chat-item label {
  text-align: right;
}

.right .chat-item {
  border-bottom-right-radius: 6px;
  border-top-left-radius: 12px;
  background-color: var(--primary);
}

.chat-item .message {
  white-space: pre-wrap;
  color: #27272A;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
}

.right .chat-item .message {
  color: #fff;
}

.chat-item .message ul {
  margin: 16px 0 16px 24px;
}

.chat-item .message li {
  margin-bottom: 6px;
}

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

.chat-item .message.error-message {
  color: #dc3545;
}

.chat-item .message.typing span {
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #9F9FA9;
  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(--vc-zinc-950);
  background-color: #fff;
  padding: 16px;
  border-top: 1px solid #E4E4E7CC
}

.chat-input-group {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.chat-input-group textarea {
  min-height: 48px;
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  font-size: 16px;
  line-height: normal;
  transition: 0.15s ease-in-out;
  border-radius: 14px;
  resize: none;
  display: block;
  border: none;
  background-color: #FAFAFA;
  border: 1px solid #E4E4E7CC;
  margin-right: 12px;
  font-size: 14px;
}

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

.chat-footer {
  display: flex;
}

.btn-send {
  border-radius: 14px;
  height: 48px;
  background-color: var(--primary);
  color: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border: none;
}

.btn-send-mobile {
  display: none;
}

.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;
  padding: 0.5rem 1rem;
  font-weight: 500;
  width: 100%;
  height: 3rem;
  min-height: inherit;
}

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

/* Common truncation utility */
.truncate {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  /* compat */
  -webkit-box-orient: vertical;
}

.truncate.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  /* compat */
  display: block;
}

/* Generic alias for read more buttons */
.read-more-toggle {
  margin-top: 8px;
  color: var(--vc-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.read-more-toggle:focus {
  outline: none;
}

.section-title-wrapper {
  display: flex;
  align-items: flex-end;
  margin-bottom: 64px;
}

.section-title {
  font-size: 48px;
  line-height: 48px;
  font-weight: 500;
}

.section-title-wrapper .section-title {
  margin-bottom: 0;
  margin-right: 40px;
}

.section-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: var(--vc-text-body);
}

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

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

.function .section-title {
  text-align: center;
  margin-bottom: .75rem;
  font-size: 32px;
  line-height: 40px;
}

.function-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: -2rem;
}

.function-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 2rem 4rem 2rem;
}

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

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

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

.expert .expert-content {
  display: flex;
}

.expert-item {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
}

.expert-item:last-child {
  margin-right: 0;
}

.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: 19px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: .25rem;
  white-space: nowrap;
}

.expert-item-role {
  font-size: 16px;
  line-height: normal;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rating {
  display: flex;
}

.rating img {
  width: 1rem;
  height: 1rem;
  object-fit: cover;
  margin-right: 2px;
}

.expert-item-description {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Footer */
footer {
  padding: 64px 0;
  background-color: var(--primary);
}

.footer-content {
  color: #fff;
  font-weight: 400;
}

.footer-content .logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 34px;
}

.footer-content .logo img {
  height: 36px;
  flex-shrink: 0;
  margin-right: 8px;
}

.footer-description {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.footer-description a {
  color: #fff;
}

.footer-divide {
  background-color: #E5E7EB80;
  width: 100%;
  height: 1px;
  margin-bottom: 32px;
}

.footer-company-info {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
}

.footer-company-info.email {
  margin-top: 24px;
  text-decoration: underline;
}

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

.footer-copyright {
  margin-top: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.footer-legal {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

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

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

.footer-legal-toggle {
  display: flex;
  margin: 0 2rem;
}

.footer-legal-toggle .prefix-legal {
  margin-right: 4px;
}

.footer-legal button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-right: 24px;
}

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

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

.footer-cards img {
  width: 40px;
  margin-left: 10px;

}

.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: #2c5ff8;
  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: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 12px;
}

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

.skeleton-name {
  width: 60%;
  margin-bottom: .625rem;
}

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

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

.chat-item-wrapper-skeleton {
  margin-bottom: 0.625rem;
  width: 80%;
}

.chat-item-skeleton {
  flex: 1;
}

.skeleton-username {
  width: 50%;
  margin-bottom: .25rem;
}

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

.tooltip-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--vc-zinc-950);
  color: #fff;
  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(--vc-zinc-950);
}

.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-container {
  display: none;
}

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

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


/* Testimonials Section */
.testimonials-section {
  padding: 94px 0;
  background: #fafafa;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff7ed;
  border-radius: 16777200px;
  padding: 8px 16px;
  margin-bottom: 16px;
}

.testimonials-badge img {
  width: 16px;
  height: 16px;
}

.testimonials-badge span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: #bb4d00;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  width: 100%;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--vc-border);
  border-radius: 16px;
  padding: 33px;
  display: flex;
  flex-direction: column;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars img {
  width: 20px;
  height: 20px;
}

.testimonial-quote {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.3125px;
  color: #3f3f46;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e4e4e7;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: var(--vc-zinc-900);
  margin-bottom: 0;
}

.author-info p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: var(--vc-text-muted);
  margin-bottom: 0;
}

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

@media (min-width: 1500px) {
  .hero-content-right {
    right: calc((100% - 75rem) / 2);
  }
}

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

  .hero-content-right {
    right: 32px;
  }

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

  .hero-bar-item {
    margin-bottom: 1rem;
  }

  .hero-bar-item:last-child {
    margin-bottom: 0;
  }

  .features-grid {
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .hero-content-right {
    right: 24px;
  }

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

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {

  html,
  body {
    font-size: 14px;
  }

  .hidden-mobile {
    display: none;
  }

  .hidden-desktop {
    display: block;
  }

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

  .hero {
    padding: 32px 0 50px 0;
    display: flex;
    flex-direction: column;
  }

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

  .hero-content-left {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    flex: 1;
    min-height: 0;
    margin-right: 0;
    padding: 0;
    justify-content: flex-end;
  }

  .hero-content-left-text {
    margin-top: 32px;
  }

  .hero-content-left h1 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 12px;
  }

  .hero-content-left .hero-description {
    line-height: 18px;
  }

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

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

  /* CHECKOUT */
  .checkout-outer-container {
    padding: 16px;
    background-color: #C4C4C421;

  }

  .checkout-inner-container {
    width: 100%;
    border-radius: 0;
    padding: 0;
  }

  .checkout-outer-container h2 {
    font-size: 16px;
    letter-spacing: .15px;
    line-height: 20px;
    text-align: center;
    font-weight: 600;
    padding: 16px;
  }

  .checkout-container {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: white;
    padding: 16px 12px;
  }

  /* CHAT CONTENT */
  .btn-close-chat-mobile {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    cursor: pointer;
  }

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

  .mobile-chat-block .chat {
    flex: 1;
    min-height: 0;
  }

  .chat-head h1 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0;
  }

  .chat-head .online-experts {
    margin-top: 12px;
  }

  .chat-head .expert-avatars .avatar {
    height: 34px;
    width: 34px;
    margin-right: -8px;
  }

  .chat-head .online-indicator {
    right: -10px;
  }

  .chat-list {
    margin-top: 12px;
    height: auto;
  }

  .chat-out .chat-list {
    margin-bottom: auto;
  }

  .chat-in .chat-list {
    margin-top: auto;
  }

  .chat-list .chat-item-wrapper {
    margin-bottom: .75rem;
  }

  .mobile-chat-block {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    border-radius: 24px;
  }

  .mobile-chat-block .chat {
    height: 100%;
    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;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
  }

  .hero-content-right {
    display: none;
    max-height: 100%;
  }

  .hero-content-right.chat-modal-wrapper {
    display: flex;
    flex-direction: column;
    position: fixed;
    padding: 24px 16px;
    top: 0;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    z-index: 999;
    background-color: #fff;
  }

  .chat-modal-wrapper .chat {
    height: 100%;
    box-shadow: 0px 25px 50px -12px #00000040;
  }

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

  .btn-send-mobile {
    display: block;
    min-width: 32px !important;
    width: 32px !important;
    min-height: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    align-items: center;
    margin: 0px 8px 0 8px;
    border: 0;
  }

  .btn-send-mobile img {
    width: 20px;
    height: 100%;
  }

  #textareaMessage {
    min-height: 2em;
    height: auto;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  /* Offer section */

  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .pricing-amount {
    text-align: left;
  }

  .how-it-works-section .how-it-works-content {
    width: 100%;
  }

  .how-it-works-section .step-content p {
    max-width: 100%;
  }

  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

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

  .function {
    width: 100%;
  }

  .expert .content {
    width: 100%;
  }

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



  .bubble-chat-container {
    display: block;
    position: fixed;
    bottom: 24px;
    z-index: 999;
    width: 100%;
    padding: 0 24px;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-in-out;
  }

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

  .bubble-chat-message {
    background: black;
    opacity: 0.85;
    width: 100%;
    color: white;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 4px;
    padding: 12px 8px;
    font-size: 12px;
  }

  .bubble-chat-message ul {
    margin-left: 12px;
  }

  .bubble-chat-button {
    width: 4rem;
    min-width: 4rem;
    height: 4rem;
    min-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;
  }

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

  .btn-chat-now {
    width: 50%;
  }

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

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



  .banner-bottom .content {
    max-width: 560px;
  }

  .section-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }


  .testimonials-section {
    padding: 64px 0;
  }

  .testimonials-header {
    margin-bottom: 32px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .offer-content {
    width: 100%;
  }

  .footer-copyright-container {
    display: block;
  }

  .footer-cards {
    margin-top: 16px;
  }
}

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

  .hero-content-left {
    padding-top: 8px;
  }


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

  .chat-head h1 {
    margin-bottom: 0;
  }


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