:root {
  /* Theme Colors */
  --av-color-primary: #12715b;
  --av-color-black: #000000;
  --av-color-text: #141b34;
  --av-color-primary-icon: #aaaaaa;
  --av-color-border-color: #e6e6e6;
  --av-color-input-color: #f6f6f6;
  --av-color-white-color: #ffffff;
  --av-color-bg: #fbf9f7;

  /* Theme Font Size */
  --av-font-size-12: 0.75rem;
  --av-font-size-14: 0.875rem;
  --av-font-size-16: 1rem;
  --av-font-size-18: 1.125rem;
  --av-font-size-20: 1.25rem;
  --av-font-size-22: 1.375rem;
  --av-font-size-24: 1.5rem;
  --av-font-size-26: 1.625rem;
  --av-font-size-28: 1.75rem;
  --av-font-size-30: 1.875rem;
  --av-font-size-32: 2rem;
  --av-font-size-34: 2.125rem;
  --av-font-size-36: 2.25rem;
  --av-font-size-38: 2.375rem;
  --av-font-size-40: 2.5rem;
  --av-font-size-42: 2.625rem;

  /* Theme Font Weight */
  --av-font-weight-400: 400;
  --av-font-weight-500: 500;
  --av-font-weight-600: 600;
  --av-font-weight-700: 700;

  /* Theme Radius */
  --av-radius-500: 31.25rem;
  --av-radius-22: 1.375rem;
}

html,
body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
}

.chat.heading-profile {
  position: absolute;
  width: unset;
  height: unset;
  border-radius: 0;
  box-shadow: none;
  z-index: 5;
}

.chat.left-profile {
  top: 37%;
  left: -1.5625rem; 
}

.chat.right-profile {
  top: 39%;
  right: -1.5625rem; 
}

.chat-features .features-head {
  margin-bottom: 3.75rem; 
}

.chat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; 
}

.chat-card {
  background: var(--av-color-bg);
  border-radius: 0.625rem; 
  display: flex;
  flex-direction: column;
}

.chat-content {
  padding-top: 1.875rem; 
  padding-left: 1.875rem; 
}

.chat-content h3 {
  font-family: Sora;
  font-weight: 600;
  font-size: 1.5rem; 
  line-height: 2.5rem; 
  letter-spacing: -0.02rem;
  margin-bottom: 0.9375rem; 
  color: var(--av-color-text);
}

.chat-content p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 1rem; 
  line-height: 1.75rem; 
  letter-spacing: 0;
  color: var(--av-color-text);
  margin-bottom: 2.4375rem; 
  max-width: 24.125rem; 
}

.chat-card img {
  display: block;
  margin: 0 auto;
  margin-top: auto;
}

.chat-card6 img {
  margin-top: 0;
}

.task-integration {
  padding: 6.25rem 0; 
  margin: 6.25rem 0;  
  position: relative;
}

.task-integration::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--av-color-bg);
  z-index: 0;
  pointer-events: none;
}

.task-integration .features-head {
  margin-bottom: 1.875rem; 
}

.task-integration .features-text {
  margin-bottom: 1.875rem;
  max-width: 53.8125rem;   
}

.task-integration .hero-btns a {
  width: 13.125rem; 
}

.task-integration .hero-btns {
  margin-bottom: 5.0625rem; 
}

.task-integration .demo-btn {
  background: var(--av-color-white-color);
}

.taskint-img {
  position: relative;
  display: block;
  margin: 0 auto;
}

.connect-section .trial-btn {
  width: 13.125rem; 
  height: 3.875rem;
  border-radius: var(--av-radius-500);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--av-color-text);
  text-decoration: none;
  margin-top: 1.3125rem;
}

.connect-section .trial-btn span {
  color: var(--av-color-white-color);
  font-family: Roboto;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 100%;
  letter-spacing: 0;
}

.connect-section .assistant-section {
  gap: 2.3125rem; 
}

.connect-section .powered-text {
  gap: 0.5625rem;
}

@media (max-width: 1399.98px) {
  .chat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chat-card img {
    width: 85%;
  }
  .taskint-img {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .chat-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .task-integration .hero-btns {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1400px) and (max-width: 1599.98px) {
  .chat-card img {
    width: 90%;
  }
}