/* ==========================================================================
   AI 1 page — Hero
   ========================================================================== */
.aichat-hero {
    position: relative;
    overflow: hidden;
    background-color: #020010;
    padding-block: 137px 50px;
}
video.aichat-hero__bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 0;
    inset: 0px;
}

.aichat-hero__glow {
  position: absolute;
  top: clamp(-134px, -33vw, -320px);
  left: clamp(211px, 53vw, 807px);
  width: clamp(301px, 51vw, 774px);
  height: clamp(301px, 51vw, 774px);
  border-radius: 50%;
  background: #563384;
  filter: blur(clamp(70px, 14vw, 160px));
  opacity: 0.6;
  z-index: 1;
}

.aichat-hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 0, 16, 0) 45%, rgba(2, 0, 16, 0.9) 82%, #020010 100%),
    linear-gradient(255deg, rgba(2, 0, 16, 0.55) 4%, rgba(2, 0, 16, 0.78) 43%, rgba(2, 0, 16, 0.92) 69%, #020010 92%);
  pointer-events: none;
}

.aichat-hero__container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.aichat-hero__eyebrow {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 12px;
    line-height: normal;
    letter-spacing: 2.86px;
    text-transform: uppercase;
    color: #cab5ff;
    margin: 0 0 22px;
}

.aichat-hero__heading {
    max-width: 705px;
    font-family: var(--font-base);
    font-weight: 400;
    font-size: 64px;
    line-height: 72px;
    color: var(--color-text-light);
    margin: 0 0 26px;
}

.aichat-hero__heading span {
  display: block;
}

.aichat-hero__description {
  max-width: 705px;
  font-family: var(--font-serif);
  font-size: clamp(16px, 0.9vw + 12px, 25px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .aichat-hero {
    padding-block: 100px 64px;
  }

  .aichat-hero__heading {
    font-size: 48px;
    line-height: 54px;
    max-width: 100%;
  }

  .aichat-hero__description {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .aichat-hero {
    padding-block: 50px 50px;
  }

  .aichat-hero__container {
    max-width: 100%;
  }

  .aichat-hero__eyebrow {
    margin: 0 0 16px;
  }

  .aichat-hero__heading,
  .aichat-hero__description {
    max-width: 100%;
  }

  .aichat-hero__heading {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.15;
    margin: 0 0 16px;
  }

  .aichat-hero__description {
    font-size: 16px;
    line-height: 25px;
  }
}

@media (max-width: 479px) {
  .aichat-hero__heading {
    font-size: clamp(26px, 9vw, 30px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aichat-hero {
    background-image: radial-gradient(60% 60% at 70% 0%, #4a2e70 0%, #020010 70%);
  }
}

/* ==========================================================================
   AI 1 page — AI Services (4-card grid)
   ========================================================================== */
.aichat-services {
    position: relative;
    background: linear-gradient(28deg, #000000 0%, #26072b66 100%);
    padding-block: 120px;
}

.aichat-services__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.aichat-services__header {
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 33px;
}

.aichat-services__eyebrow {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: #cab5ff;
  margin: 0 0 15px;
}

.aichat-services__heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(32px, 3.4vw, 76px);
    line-height: 1.13;
    letter-spacing: -0.045em;
    color: var(--color-text-light);
    margin: 0;
    max-width: 970px;
    margin-inline: auto;
}

.aichat-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 53px;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.aichat-service-card {
    background: rgb(15, 8, 33);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(185, 108, 255, 0.32);
    border-image: none;
    border-radius: 25px;
    padding: 40px 31px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.aichat-service-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 14px;
    overflow: hidden;
    background: rgb(32, 27, 53);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(79, 70, 111);
    border-image: none;
}
.aichat-service-card__media img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.aichat-service-card__title {
  font-family: var(--font-base);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0 0 16px;
}

.aichat-service-card__desc {
    font-family: var(--font-base);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 20px;
}

.aichat-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono-label);
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #b96cff;
}

.aichat-service-card__link svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.aichat-service-card:hover .aichat-service-card__link svg {
  transform: translateX(3px);
}

.aichat-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 108, 255, 0.5);
  box-shadow: 0 16px 32px rgba(120, 60, 200, 0.25);
}

@media (hover: none) and (pointer: coarse) {
  .aichat-service-card:hover {
    transform: none;
  }

  .aichat-service-card:hover .aichat-service-card__link svg {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aichat-service-card:hover {
    transform: none !important;
  }

  .aichat-service-card:hover .aichat-service-card__link svg {
    transform: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .aichat-services {
    padding-block: 80px;
  }

  .aichat-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .aichat-services {
    padding-block: 56px;
  }

  .aichat-services__header {
    margin-bottom: 32px;
  }

  .aichat-services__heading {
    font-size: clamp(28px, 7vw, 36px);
    letter-spacing: -0.02em;
  }

  .aichat-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aichat-service-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   AI 1 page — View our work (sticky-nav case-study list)
   Reuses the homepage Use Cases / Shopify "View our work" scroll-spy
   composition and behavior (see initScrollSpyNav in js/main.js) with
   page-scoped classes/content. Figma node 16853:6474 — light section on
   an otherwise dark page, matching that node's #171717 heading/label
   colors on a white background.
   ========================================================================== */
.aichat-work {
  background-color: #fff;
  padding-block: 64px 72px;
}

.aichat-work__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.aichat-work__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.aichat-work__nav-col {
  min-width: 0;
}

.aichat-work__nav-sticky {
  position: static;
}

.aichat-work__eyebrow {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: #9a60fb;
  margin: 0 0 24px;
}

.aichat-work__heading {
  font-family: var(--font-base);
  font-weight: 800;
  font-size: clamp(32px, 9vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #171717;
  margin: 0 0 24px;
}

.aichat-work__heading-accent {
  color: #9a60fa;
  font-weight: 300;
}

.aichat-work__nav-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.aichat-work__nav-list li {
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

.aichat-work__nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding-block: 14px;
  text-align: left;
}

.aichat-work__nav-indicator {
  flex-shrink: 0;
  width: 3px;
  height: 32px;
  background-color: #9a60fa;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.aichat-work__nav-item.is-active .aichat-work__nav-indicator {
  opacity: 1;
}

.aichat-work__nav-label {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(23, 23, 23, 0.48);
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.aichat-work__nav-item.is-active .aichat-work__nav-label {
  color: #171717;
  font-weight: 600;
}

.aichat-work__content-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aichat-work-card {
  scroll-margin-top: calc(var(--header-height) + 24px);
  background-color: #0f0821;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  padding: 20px 16px;
}

.aichat-work-card__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.aichat-work-card__tag {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 1.86px;
    text-transform: uppercase;
    color: #9a60fb;
    margin: 0 0 10px;
}

.aichat-work-card__title {
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.aichat-work-card__desc {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 100%;
}

.aichat-work-card__link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono-label);
  font-weight: 600;
  font-size: 13px;
  color: #b96cff;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.aichat-work-card__link svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.aichat-work-card__link:hover,
.aichat-work-card__link:focus-visible {
  color: #ffffff;
}

.aichat-work-card__link:hover svg,
.aichat-work-card__link:focus-visible svg {
  transform: translateX(3px);
}

.aichat-work-card__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

@media (hover: none) and (pointer: coarse) {
  .aichat-work-card__link:hover svg {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aichat-work-card__link:hover svg {
    transform: none !important;
  }
}

/* ---- Tablet — 768px to 1023px: true tab component, single column,
   horizontal nav row, only the active card visible. ---- */
@media (min-width: 768px) and (max-width: 1023px) {
  .aichat-work__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .aichat-work__nav-sticky {
    position: static;
  }

  .aichat-work__nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    border-top: none;
  }

  .aichat-work__nav-list li {
    border-bottom: none;
  }

  .aichat-work__nav-item {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    gap: 10px;
    padding: 8px 0 12px;
  }

  .aichat-work__nav-indicator {
    order: 2;
    width: 100%;
    height: 2px;
  }

  .aichat-work__nav-label {
    order: 1;
  }

  .aichat-work-card__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }

  .aichat-work-card__link {
    flex-shrink: 0;
  }
}

/* ---- Desktop — 1024px+, sticky-nav scroll-spy, matches Figma. ---- */
@media (min-width: 1024px) {
  .aichat-work {
    padding-block: 120px;
  }

  .aichat-work__grid {
    grid-template-columns: minmax(360px, 408px) minmax(0, 1fr);
    column-gap: clamp(60px, 10vw, 160px);
  }

  .aichat-work__nav-sticky {
    position: sticky;
    top: calc(var(--header-height) + 40px);
  }

  .aichat-work__heading {
    font-weight: 700;
    font-size: 72px;
    line-height: 1.097;
    letter-spacing: -3.46px;
  }

  .aichat-work__nav-list {
    flex-direction: column;
    flex-wrap: nowrap;
    border-top: 1px solid rgba(23, 23, 23, 0.1);
  }

  .aichat-work__nav-list li {
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  }

  .aichat-work__nav-item {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding-block: 12px;
  }

  .aichat-work__nav-indicator {
    order: initial;
    width: 5px;
    height: 55px;
  }

  .aichat-work__nav-label {
    order: initial;
  }

  .aichat-work-card {
    border-radius: 25px;
    padding: 24px;
  }

  .aichat-work-card__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
  }

  .aichat-work-card__link {
    flex-shrink: 0;
    font-size: 14px;
  }

  .aichat-work-card__title {
    font-size: 18px;
    line-height: 1.556;
  }

  .aichat-work-card__desc {
    font-size: 14px;
    line-height: 1.714;
  }

  .aichat-work-card__img {
    border-radius: 12px;
    height: 454px;
    object-fit: cover;
  }
}

/* ---- Mobile — up to 767px: edge-bleed scrollable tab nav. ---- */
@media (max-width: 767px) {
  .aichat-work__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .aichat-work__nav-sticky {
    position: static;
  }

  .aichat-work__nav-list {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: none;
    gap: 20px;
    margin-inline: calc(var(--container-padding-inline) * -1);
    padding-inline: var(--container-padding-inline);
  }

  .aichat-work__nav-list::-webkit-scrollbar {
    display: none;
  }

  .aichat-work__nav-list li {
    border-bottom: none;
    flex-shrink: 0;
  }

  .aichat-work__nav-item {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    flex: 0 0 auto;
    gap: 8px;
    padding: 8px 0 12px;
    white-space: nowrap;
  }

  .aichat-work__nav-indicator {
    order: 2;
    width: 100%;
    height: 4px;
  }

  .aichat-work__nav-label {
    order: 1;
    font-size: 13px;
    padding: 0 10px;
  }
}

/* ==========================================================================
   AI 1 page — Real Feedback from Clutch (testimonial grid)
   ========================================================================== */
.aichat-clutch {
  position: relative;
  background-color: #020010;
  padding-block: 120px;
}

.aichat-clutch__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.aichat-clutch__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 940px;
  margin: 0 auto 72px;
}
.aichat_rating_main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.aichat-clutch__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.aichat-clutch__rating img {
    display: block;
    width: 100%;
    max-width: 47px;
    height: auto;
}
.aichat-clutch_rate img {
    width: 100%;
    max-width: 142px;
    height: auto;
    margin: 0 0 4px;
}

.aichat-clutch__rating-label {
    font-family: var(--font-base);
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.aichat-clutch__heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.0564em;
    color: var(--color-text-light);
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.aichat-clutch__logo-img {
  display: inline-block;
  height: 0.7em;
  width: auto;
  vertical-align: -0.14em;
}

.aichat-clutch__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aichat-clutch-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  background: #0f0821;
  border: 1px solid rgba(185, 108, 255, 0.35);
  border-radius: 14px;
  padding: 40px 26px;
  min-height: 275px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.aichat-clutch-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 108, 255, 0.5);
  box-shadow: 0 16px 32px rgba(120, 60, 200, 0.25);
}

@media (hover: none) and (pointer: coarse) {
  .aichat-clutch-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aichat-clutch-card:hover {
    transform: none !important;
  }
}

.aichat-clutch-card__stars {
  display: flex;
  align-items: center;
  gap: 5px;
}

.aichat-clutch-card__quote {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-light);
  margin: 0;
}

.aichat-clutch-card__author {
  font-family: var(--font-base);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.aichat-clutch-card__author strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-light);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .aichat-clutch {
    padding-block: 72px 88px;
  }

  .aichat-clutch__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .aichat-clutch {
    padding-block: 56px 64px;
  }

  .aichat-clutch__header {
    margin-bottom: 32px;
  }

  .aichat-clutch__heading {
    font-size: clamp(28px, 8vw, 36px);
  }

  .aichat-clutch__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.aichat-usecases {
    background-color: #ffffff;
    padding-block: 120px 90px;
    overflow: hidden;
}

.aichat-usecases__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.aichat-usecases__header {
  text-align: center;
  max-width: 1036px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.aichat-usecases__eyebrow {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    color: #6c3acb;
    margin: 0 0 28px;
}

.aichat-usecases__heading {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 76px;
    line-height: 86px;
    color: #171717;
    margin: 0;
}

.aichat-usecases__marquee {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aichat-usecases__row {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
  mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}

.aichat-usecases__track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: aichat-usecases-scroll 34s linear infinite;
}

.aichat-usecases__row:hover .aichat-usecases__track {
  animation-play-state: paused;
}

.aichat-usecases__row--reverse .aichat-usecases__track {
  animation-direction: reverse;
}

.aichat-usecases__pills {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aichat-usecases__pills li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #dadada;
    background-color: rgba(245, 243, 248, 0.16);
    font-family: var(--font-mono-label);
    font-weight: 450;
    font-size: 16px;
    line-height: 24px;
    color: #171717;
    white-space: nowrap;
    line-height: normal;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.aichat-usecases__pills li:hover {
  background-color: #9a60fb;
  border-color: #b96cff;
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(185, 108, 255, 0.3), 0 8px 20px rgba(120, 60, 200, 0.35);
}

@keyframes aichat-usecases-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aichat-usecases__track {
    animation: none;
  }
}

@media (max-width: 1023px) {
  .aichat-usecases__header {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
.aichat-usecases {
    padding-block: 64px;
}

  .aichat-usecases__header {
    margin-bottom: 28px;
  }

.aichat-usecases__heading {
    font-size: 32px;
    letter-spacing: -2px;
    line-height: 37px;
}

  .aichat-usecases__marquee {
    gap: 12px;
  }

  .aichat-usecases__row {
    -webkit-mask-image: linear-gradient(to right, transparent, black 30px, black calc(100% - 30px), transparent);
    mask-image: linear-gradient(to right, transparent, black 30px, black calc(100% - 30px), transparent);
  }

  .aichat-usecases__track {
    gap: 12px;
    animation-duration: 26s;
  }

  .aichat-usecases__pills {
    gap: 12px;
  }

  .aichat-usecases__pills li {
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 12px;
}
}


/* ==========================================================================
   AI 1 page — Our Process
   ========================================================================== */
.aichat-process {
  background-color: #ffffff;
  padding-block: 100px;
}

.aichat-process__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 115px;
  align-items: start;
}

.aichat-process__eyebrow {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: #6c3acb;
  margin: 0 0 28px;
}

.aichat-process__heading {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 76px);
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #171717;
  margin: 0;
}

.aichat-process__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aichat-process__step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 31px 31px 34px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.aichat-process__number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 8px;
  background: rgba(185, 108, 255, 0.14);
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #b96cff;
}

.aichat-process__step-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aichat-process__step-title {
    font-family: var(--font-base);
    font-weight: 800;
    font-size: 24px;
    line-height: 36.5px;
    letter-spacing: -0.002em;
    color: #171717;
    margin: 0;
}

.aichat-process__step-desc {
    font-family: var(--font-base);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.66;
    color: #414c5b;
    margin: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .aichat-process {
    padding-block: 72px;
  }

  .aichat-process__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .aichat-process {
    padding-block: 56px;
  }

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

  .aichat-process__heading {
    font-size: clamp(28px, 8vw, 36px);
  }

  .aichat-process__step {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  .aichat-process__step-title {
    font-size: 20px;
    line-height: normal;
}
.aichat-process__step-desc {
    font-size: 16px;
    line-height: 22px;
    margin: 8px 0 0;
}

}

/* ==========================================================================
   AI 1 page — What our clients say (testimonial)
   ========================================================================== */
.aichat-testimonials {
    position: relative;
    overflow: hidden;
    background-color: #020010;
    background-image: radial-gradient(40% 90% at 99% 20%, rgba(154, 96, 251, 0.20), transparent 70%);
    padding-block: 120px;
}

.aichat-testimonials__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.aichat-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.aichat-testimonials__eyebrow {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: #cab5ff;
  margin: 0 0 16px;
}

.aichat-testimonials__heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.0455em;
  color: var(--color-text-light);
  margin: 0;
}

.aichat-testimonials__slide {
    display: grid;
    grid-template-columns: minmax(0, 472px) minmax(0, 1fr);
    gap: 100px;
    align-items: center;
    max-width: 1214px;
    margin-inline: auto;
}

.aichat-testimonials__media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 484 / 526;
}

.aichat-testimonials__media img,
.aichat-testimonials__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aichat-testimonials__quote {
  font-family: var(--font-base);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw + 13px, 50px);
  line-height: 1.32;
  color: var(--color-text-light);
  margin: 0 0 38px;
}

.aichat-testimonials__author {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text-light);
  margin: 0 0 38px;
}

.aichat-testimonials__author span {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.aichat-testimonials__nav {
  display: flex;
  gap: 12px;
}

.aichat-testimonials__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(154, 96, 251, 0.16);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .aichat-testimonials {
    padding-block: 80px;
  }

  .aichat-testimonials__slide {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .aichat-testimonials {
    padding-block: 56px;
  }

  .aichat-testimonials__header {
    margin-bottom: 32px;
  }

  .aichat-testimonials__heading {
    font-size: clamp(28px, 8vw, 36px);
  }

  .aichat-testimonials__slide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aichat-testimonials__media {
    max-width: 320px;
    margin-inline: auto;
  }
}

/* ==========================================================================
   AI 1 page — AI Solutions Across Industries
   ========================================================================== */
.aichat-industries {
  background-color: #FAF9FD;
  padding-block: 120px;
}

.aichat-industries__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.aichat-industries__header {
  max-width: 960px;
  margin: 0 auto 33px;
  text-align: center;
}

.aichat-industries__eyebrow {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: #9a60fb;
  margin: 0 0 16px;
}

.aichat-industries__heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 76px);
  line-height: 1.13;
  letter-spacing: -0.045em;
  color: #171717;
  margin: 0;
}

.aichat-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 53px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aichat-industry-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px 39px 70px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.aichat-industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(154, 96, 251, 0.4);
  box-shadow: 0 16px 32px rgba(120, 60, 200, 0.12);
}

.aichat-industry-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9px;
  background: rgba(154, 96, 251, 0.14);
  overflow: hidden;
}

.aichat-industry-card__icon img {
  transition: transform 0.25s ease;
      width: 100%;
    max-width: 100%;
    height: auto;
}

.aichat-industry-card:hover .aichat-industry-card__icon img {
  transform: scale(1.15) rotate(-8deg);
}

@media (hover: none) and (pointer: coarse) {
  .aichat-industry-card:hover {
    transform: none;
  }

  .aichat-industry-card:hover .aichat-industry-card__icon img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aichat-industry-card:hover {
    transform: none !important;
  }

  .aichat-industry-card:hover .aichat-industry-card__icon img {
    transform: none !important;
  }
}

.aichat-industry-card__title {
  font-family: var(--font-base);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.27;
  color: #171717;
  margin: 18px 0 0;
}

.aichat-industry-card__desc {
    font-family: var(--font-base);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(23, 23, 23, 0.72);
    margin: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .aichat-industries {
    padding-block: 80px;
  }

  .aichat-industries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .aichat-industries {
    padding-block: 56px;
  }

  .aichat-industries__header {
    margin-bottom: 32px;
  }

  .aichat-industries__heading {
    font-size: clamp(28px, 8vw, 36px);
  }

  .aichat-industries__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .aichat-industry-card {
    padding: 28px;
  }
}
.aichat-cta {
    background: #F7F5F9;
    padding: 120px;
}

.aichat-cta__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: 0;
}

.aichat-cta__panel {
  max-width: 1265px;
  margin-inline: auto;
  background: #f6e339;
  border-radius: 10px;
  padding: clamp(40px, 6vw, 91px) clamp(24px, 7vw, 97px) clamp(40px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 3vw, 32px);
}

.aichat-cta__eyebrow {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #171717;
  margin: 0;
}

.aichat-cta__heading {
    font-family: var(--font-base);
    font-weight: 900;
    font-size: clamp(32px, 3.2vw + 20px, 63px);
    line-height: 71px;
    letter-spacing: -0.02em;
    color: #171717;
    max-width: 900px;
    margin: 0;
}

.aichat-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 27px 36px;
    background: #543582;
    color: #ffffff;
    font-family: var(--font-mono-label);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 2px;
}

.aichat-cta__button:hover,
.aichat-cta__button:focus-visible {
  transform: scale(1.08);
}

.aichat-cta__button-arrow {
  flex-shrink: 0;
}

@media (hover: none) and (pointer: coarse) {
  .aichat-cta__button:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aichat-cta__button:hover,
  .aichat-cta__button:focus-visible {
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .aichat-cta {
    padding: 64px 0;
  }

  .aichat-cta__container {
    padding-inline: 15px;
  }

  .aichat-cta__panel {
    max-width: none;
    border-radius: 8px;
    padding: 40px 15px;
    gap: 24px;
  }

  .aichat-cta__eyebrow {
    font-size: 12px;
  }

  .aichat-cta__heading {
    font-weight: 700;
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.19;
    letter-spacing: -0.02em;
    color: #0e1014;
    max-width: none;
  }

  .aichat-cta__button {
    width: 100%;
    padding: 17px 24px;
    white-space: normal;
    text-align: center;
}
}

/* ==========================================================================
   AI 1 page — Why partner with us / Why teams pick us
   ========================================================================== */
.aichat-why {
  background-color: #020010;
  padding-block: 100px;
}

.aichat-why__container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.aichat-why__header {
  text-align: center;
  max-width: 1168px;
  margin: 0 auto 48px;
}

.aichat-why__eyebrow {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.86px;
  text-transform: uppercase;
  color: #6c3acb;
  margin: 0 0 20px;
}

.aichat-why__heading {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: var(--color-text-light);
  margin: 0;
}

.aichat-why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 10px solid #ffffff1a;
    border-radius: 10px;
    overflow: hidden;
    background: #200D2A;
}

.aichat-why__panel {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: rgba(84, 53, 130, 0.08);
}

.aichat-why__panel:hover {
  background: rgba(84, 53, 130, 0.16);
}

@media (hover: none) and (pointer: coarse) {
  .aichat-why__panel:hover {
    background: rgba(84, 53, 130, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aichat-why__panel:hover {
    background: rgba(84, 53, 130, 0.08);
  }
}

.aichat-why__panel:first-child {
    border-right: 5px solid rgb(255 255 255 / 10%);
}
.aichat-why__panel:last-child {
    border-left: 5px solid rgb(255 255 255 / 10%);
}

.aichat-why__panel-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aichat-why__panel-title {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: var(--color-text-light);
  margin: 0;
}

.aichat-why__panel-title span {
  color: #af80f5;
}

.aichat-why__panel-desc {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.aichat-why__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aichat-why__pills li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 12px;
    border-radius: 20px;
    background: rgba(84, 53, 130, 0.15);
    border: 1px solid rgba(175, 128, 245, 0.1);
    font-family: var(--font-mono-label);
    font-weight: 500;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    line-height: normal;
}

.aichat-why__pills li:hover {
  background-color: #9a60fb;
  border-color: #b96cff;
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(185, 108, 255, 0.3), 0 8px 20px rgba(120, 60, 200, 0.35);
}

.aichat-why__pills li img {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.aichat-why__pills li:hover img {
  transform: scale(1.15) rotate(-8deg);
}

@media (hover: none) and (pointer: coarse) {
  .aichat-why__pills li:hover {
    background-color: rgba(84, 53, 130, 0.15);
    border-color: rgba(175, 128, 245, 0.1);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
  }

  .aichat-why__pills li:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aichat-why__pills li:hover {
    background-color: rgba(84, 53, 130, 0.15);
    border-color: rgba(175, 128, 245, 0.1);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
  }

  .aichat-why__pills li:hover img {
    transform: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .aichat-why {
    padding-block: 72px;
  }

  .aichat-why__panel {
    padding: 36px 28px;
  }

  .aichat-why__panel-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .aichat-why {
    padding-block: 56px;
  }

  .aichat-why__header {
    margin-bottom: 32px;
  }

  .aichat-why__heading {
    font-size: clamp(28px, 8vw, 36px);
  }

  .aichat-why__grid {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .aichat-why__panel:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(175, 128, 245, 0.14);
  }

  .aichat-why__panel {
    padding: 28px 24px;
  }

  .aichat-why__panel-title {
    font-size: 20px;
  }

  .aichat-why__pills li {
    font-size: 14px;
  }
}

/* ==========================================================================
   AI 1 page — Technologies we worked on (logo marquee strip)
   ========================================================================== */
.aichat-tech {
    position: relative;
    background-color: #020010;
    padding-block: 0 46px;
}
.aichat-tech:before {
    content: '';
    position: absolute;
    inset: 0;
    padding-bottom: 350px;
    top: auto;
    background-image: linear-gradient(180deg, transparent, #020010);
}

.aichat-tech__label {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-inline: var(--container-padding-inline);
    font-family: var(--font-base);
    font-weight: 600;
    font-size: 13px;
    line-height: 28px;
    text-transform: uppercase;
    color: #91859c;
    margin-bottom: 18px;
    position: relative;
}

.aichat-tech__row {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.aichat-tech__row:after, .aichat-tech__row:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 100%;
}
.aichat-tech__row:before {
    background: linear-gradient(
270deg, transparent, #020010);
    z-index: 1;
}
.aichat-tech__row:after {
    right: 0;
    background: linear-gradient(
90deg, transparent, #020010);
}

.aichat-tech__track {
  display: flex;
  width: max-content;
  animation: aichat-tech-scroll 30s linear infinite;
}

.aichat-tech__row:hover .aichat-tech__track {
  animation-play-state: paused;
}

.aichat-tech__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(188, 119, 255, 0.28);
  border-bottom: 1px solid rgba(188, 119, 255, 0.28);
}

.aichat-tech__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 0 auto;
  width: 205.7px;
  min-height: 62px;
  padding: 8px;
  border-right: 1px solid rgba(188, 119, 255, 0.28);
  white-space: nowrap;
}

.aichat-tech__list li img {
  flex-shrink: 0;
  height: 24px;
  width: auto;
}

.aichat-tech__list li span {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 11.2px;
  line-height: 17.36px;
  color: #d7ccdd;
}

@keyframes aichat-tech-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aichat-tech__track {
    animation: none;
  }
}

@media (max-width: 767px) {
  .aichat-tech {
    padding-block: 20px 0;
  }

  .aichat-tech__list li {
    width: 150px;
    min-height: 52px;
  }
}

/* ==========================================================================
   AI 1 page — Desktop heading size fix (verification pass)
   Figma specifies these section headings at a flat 76px on the 1520px
   desktop frame. Their vw-based clamp() preferred values (e.g. 4vw) never
   reach the 76px cap within the required 1024/1280/1440(/1920) viewports,
   so they were rendering at ~49-69px instead of 76px. Lock to the Figma
   value at desktop widths, matching the Usecases heading which already
   uses a flat 76px with no clamp.
   ========================================================================== */
@media (min-width: 1024px) {
  .aichat-services__heading,
  .aichat-clutch__heading,
  .aichat-process__heading,
  .aichat-testimonials__heading,
  .aichat-industries__heading,
  .aichat-why__heading {
    font-size: 76px;
  }
}

@media (max-width: 767px) {
.aichat-tech:before {
    padding-bottom: 200px;
}
.aichat-service-card__title {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 12px;
}
.aichat-industry-card__title {
    font-size: 20px;
}

}