/* ==========================================================================
   AI Offerings Page
   ========================================================================== */

:root {
  --ai-navy: #190e3a;
  --ai-dark: #060a26;
  --ai-cyan: #5fffe2;
  --ai-purple: #8147bb;
  --ai-wine: #c14a72;
  --ai-light-purple: #e8e0f5;
  --ai-light-blue: #a2ecfb;
  --ai-red: #ff4d4d;
  --ai-gray: #f5f5f7;
  --ai-border: #e6e6e6;
  --ai-text: #333;
  --ai-text-light: #666;
}

.ai-page {
  font-family: "Roboto", sans-serif;
  color: var(--ai-navy);
  overflow-x: hidden;
}

.ai-page h1,
.ai-page h2,
.ai-page h3,
.ai-page h4,
.ai-page h5 {
  color: var(--ai-navy);
  font-family: "Roboto", sans-serif;
}

.ai-page h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0;
}
.ai-page h2 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
}
.ai-page h3 {
  font-size: 1.6rem;
  font-weight: 800;
}
.ai-page h4 {
  font-size: 1.15rem;
  font-weight: 700;
}

/* ---------- Section Label ---------- */
.ai-section-label,
.ai-page h2.ai-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ai-purple);
  margin: 0 0 32px;
  line-height: 1.2;
}

.ai-label-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--ai-cyan);
}

.ai-label-line--process {
  width: 207px;
  height: 6px;
}

/* ---------- Buttons ---------- */
.ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.ai-btn--primary {
  background: var(--ai-navy);
  color: #fff;
}

.ai-btn--primary:hover {
  background: #2a1a5e;
  color: #fff;
}

.ai-btn--outline {
  background: transparent;
  color: var(--ai-navy);
  border: 2px solid var(--ai-navy);
}

.ai-btn--outline:hover {
  background: var(--ai-navy);
  color: #fff;
}

.ai-btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ==========================================================================
   1. HERO
   ========================================================================== */
.ai-hero {
  padding: 80px 0 60px;
  position: relative;
  background: #fff;
  min-height: 0;
  display: flex;
  align-items: center;
}

.ai-hero__text {
  padding-right: 20px;
}

.ai-hero h1 {
  max-width: 594px;
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
}

.ai-hero__underline {
  display: block;
  width: min(603px, 100%);
  max-width: 603px;
  margin-top: 20px;
  margin-bottom: 31px;
}

.ai-hero__divider {
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, var(--ai-cyan), transparent);
  margin: 24px 0;
}

.ai-hero__subtitle {
  max-width: 650px;
  margin: 0 0 40px;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  color: #484848;
}

.ai-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ai-hero__visual {
  display: flex;
  justify-content: flex-end;
}

.ai-hero__chat-visual {
  width: min(650px, 100%);
  position: relative;
  isolation: isolate;
  line-height: 0;
  overflow: hidden;
  animation: ai-hero-visual-float 6.2s ease-in-out infinite;
  will-change: transform;
}

.ai-hero__chat-visual svg {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}

.ai-hero__chat-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}

.ai-hero__chat-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    rgba(95, 255, 226, 0) 35%,
    rgba(95, 255, 226, 0.32) 50%,
    rgba(95, 255, 226, 0) 65%
  );
  transform: translateX(-130%);
  opacity: 0;
  animation: ai-hero-visual-scan 4.2s linear infinite;
}

.ai-hero__chat-visual .ai-chat-visual__pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: ai-hero-node-pulse 2.2s ease-in-out infinite;
}

.ai-hero__chat-visual .ai-chat-visual__pulse--purple {
  animation-delay: 0s;
}

.ai-hero__chat-visual .ai-chat-visual__pulse--cyan {
  animation-delay: 0.8s;
}

@media screen and (min-width: 64em) {
  .ai-hero__chat-visual {
    padding-left: 32px;
  }
}

@keyframes ai-hero-node-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.68;
    transform: scale(1.22);
  }
}

@keyframes ai-hero-visual-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes ai-hero-visual-scan {
  0% {
    transform: translateX(-130%);
    opacity: 0;
  }
  6% {
    transform: translateX(-130%);
    opacity: 0;
  }
  14% {
    opacity: 0.14;
  }
  28% {
    opacity: 0.34;
  }
  62% {
    transform: translateX(130%);
    opacity: 0.14;
  }
  70% {
    transform: translateX(130%);
    opacity: 0;
  }
  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-hero__chat-visual,
  .ai-hero__chat-visual::before,
  .ai-hero__chat-visual .ai-chat-visual__pulse {
    animation-duration: 10s;
  }
}

/* Orchestration Diagram */
.ai-orchestration {
  position: relative;
}

.ai-orch__label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ai-text-light);
  margin-bottom: 24px;
}

.ai-orch__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.ai-orch__inputs,
.ai-orch__outputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-orch__node {
  background: #fff;
  border: 1px solid var(--ai-border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  position: relative;
}

.ai-orch__node strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.ai-orch__node span {
  font-size: 0.72rem;
  color: var(--ai-text-light);
}

.ai-orch__node::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ai-purple);
  transform: translateY(-50%);
}

.ai-orch__inputs .ai-orch__node::after {
  right: -16px;
}

.ai-orch__outputs .ai-orch__node::after {
  left: -16px;
}

.ai-orch__card {
  background: var(--ai-navy);
  color: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  min-width: 200px;
}

.ai-orch__card h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  text-align: center;
}

.ai-orch__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ai-orch__card li {
  padding: 6px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.ai-orch__card li::before {
  content: "•";
  color: var(--ai-cyan);
  margin-right: 8px;
}

.ai-orch__badge {
  display: inline-block;
  background: var(--ai-cyan);
  color: var(--ai-navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-top: 16px;
}

/* ==========================================================================
   2. OUTCOMES BAR
   ========================================================================== */
.ai-outcomes {
  padding: 0;
}

.ai-outcomes__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 21px;
  width: 100%;
  max-width: 700px;
  min-height: 101px;
  margin: 0 auto;
  padding: 0 50px;
}

.ai-outcomes__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("src/assets/images/ai-as-a-service/outcome-bg-lines.svg")
    center / 100% 100% no-repeat;
  pointer-events: none;
}

.ai-outcomes__inner > * {
  position: relative;
  z-index: 1;
}

.ai-outcomes__label {
  margin: 0;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #8147bb;
  white-space: nowrap;
}

.ai-outcomes__items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.ai-outcomes__item {
  display: flex;
  align-items: center;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #190e3a;
}

.ai-outcomes__chevron {
  width: 18px;
  height: 33px;
  flex-shrink: 0;
}

/* ==========================================================================
   3. WHY WE DO IT BETTER
   ========================================================================== */
.ai-why-better {
  padding: 60px 0 83px;
  background: #fff;
}

.ai-why-better .grid-container {
  max-width: 1440px;
  padding-left: 64px;
  padding-right: 64px;
}

.ai-why-better .ai-section-label {
  margin-bottom: 82px;
  gap: 20px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #8147bb;
}

.ai-why-better .ai-label-line {
  width: 42px;
  height: 2px;
  background: #5fffe2;
  flex-shrink: 0;
}

.ai-why-better__cards {
  max-width: 1096px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 538px));
  gap: 20px;
}

.ai-compare-card {
  position: relative;
  width: 100%;
  min-height: 400px;
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.ai-compare-card--trap {
  background: #f0f0f0;
  border: 1px solid #f65a5a;
}

.ai-compare-card--approach {
  background: linear-gradient(
    53.37deg,
    #53408c 0%,
    #190e3a 39.42%,
    #392671 100%
  );
  color: #fff;
}

.ai-compare-card.ai-compare-card--approach h3 {
  color: #fff;
}

.ai-compare-card h3 {
  margin: 0 0 16px;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #190e3a;
}

.ai-compare-card--approach .ai-compare-card__tag,
.ai-compare-card--approach h3,
.ai-compare-card--approach ul {
  position: relative;
  z-index: 1;
}

.ai-compare-card__header {
  position: relative;
  margin-bottom: 43px;
}

.ai-compare-card__tag {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ai-compare-card__tag--red {
  color: #f65a5a;
}

.ai-compare-card__tag--cyan {
  color: #5fffe2;
  display: block;
  margin-bottom: 43px;
}

.ai-compare-card__icon {
  display: block;
  flex-shrink: 0;
}

.ai-compare-card__icon--left {
  position: absolute;
  top: 0;
  right: 0;
  width: 55px;
  height: 55px;
}

.ai-compare-card__icon--right {
  position: absolute;
  top: -68px;
  right: -63px;
  width: 245px;
  height: 245px;
  pointer-events: none;
  z-index: 0;
}

.ai-compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ai-compare-card li {
  padding: 0 0 0 26px;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #484848;
  max-width: 441px;
}

.ai-compare-card li:not(:last-child) {
  margin-bottom: 20px;
}

.ai-compare-card--trap li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #f65a5a 0 4px, #ffacac 4px 7px);
}

.ai-compare-card--approach li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #5fffe2 0 4px, #78bcaf 4px 7px);
}

.ai-compare-card--approach li {
  color: #fff;
}

@media screen and (max-width: 89.9375em) {
  .ai-why-better .grid-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .ai-why-better__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-compare-card h3 {
    font-size: 32px;
  }

  .ai-compare-card li {
    font-size: 17px;
  }
}

@media screen and (max-width: 63.9375em) {
  .ai-why-better {
    padding: 40px 0 56px;
  }

  .ai-why-better .grid-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ai-why-better .ai-section-label {
    margin-bottom: 36px;
  }

  .ai-why-better__cards {
    max-width: 538px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ai-compare-card {
    min-height: 0;
    padding: 32px 24px;
  }

  .ai-compare-card__header {
    margin-bottom: 18px;
  }

  .ai-compare-card__tag {
    font-size: 14px;
    line-height: 14px;
  }

  .ai-compare-card__tag--cyan {
    margin-bottom: 28px;
  }

  .ai-compare-card h3 {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.15;
  }

  .ai-compare-card li {
    font-size: 16px;
    line-height: 25px;
    padding-left: 24px;
    max-width: none;
  }

  .ai-compare-card li:not(:last-child) {
    margin-bottom: 24px;
  }

  .ai-compare-card--trap li::before,
  .ai-compare-card--approach li::before {
    top: 5px;
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
  }

  .ai-compare-card__icon--left {
    width: 40px;
    height: 40px;
  }

  .ai-compare-card__icon--right {
    top: -86px;
    right: -94px;
    width: 210px;
    height: 210px;
  }
}

/* ==========================================================================
   4. SERVICES
   ========================================================================== */
.ai-services {
  padding: 80px 0;
  background: #edf5ff;
}

.ai-services .ai-section-label {
  margin-bottom: 60px;
}

.ai-page h2.ai-services__title {
  max-width: 594px;
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 70px;
  color: #190e3a;
}

.ai-services__title-underline {
  display: block;
  width: 223px;
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 60px;
}

.ai-services__subtitle {
  max-width: 650px;
  margin: 0 0 40px;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  color: #484848;
}

.ai-services__grid {
  margin-bottom: 32px;
  row-gap: 24px;
}

.ai-service-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 24px 24px 22px;
  margin-bottom: 24px;
  min-height: 419px;
  height: calc(100% - 24px);
  box-shadow: 0 8px 26px rgba(25, 14, 58, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ai-service-card.ai-service-card--interactive {
  cursor: pointer;
}

.ai-services__custom.ai-service-card--interactive {
  cursor: pointer;
}

.ai-service-card::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

.ai-service-card > * {
  position: relative;
  z-index: 1;
}

.ai-service-card--v1::before {
  top: -128px;
  right: -150px;
  background-image: url("src/assets/images/ai-as-a-service/Ellipse 10.svg");
}

.ai-service-card--v2::before {
  top: -102px;
  right: -144px;
  background-image: url("src/assets/images/ai-as-a-service/Ellipse 11.png");
}

.ai-service-card--v3::before {
  bottom: -190px;
  left: -130px;
  transform: rotate(180deg);
  background-image: url("src/assets/images/ai-as-a-service/Ellipse 10.svg");
}

.ai-service-card:hover {
  border-color: var(--ai-cyan);
  box-shadow: 0 14px 34px rgba(25, 14, 58, 0.1);
}

.ai-service-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.ai-service-card__num {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--ai-purple);
}

.ai-service-card__cat {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--ai-purple);
  text-align: right;
}

.ai-service-card__line {
  width: 100%;
  max-width: 379px;
  height: auto;
  margin-bottom: 26px;
}

.ai-service-card h4 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #190e3a;
}

.ai-service-card__lead {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #000;
}

.ai-service-card__detail {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #484848;
}

.ai-service-card__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ai-service-card__tags span {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #190e3a;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #f0f0f0;
  padding: 8px 12px;
  border-radius: 10px;
}

.ai-services__custom {
  text-align: center;
  background: #5fffe2;
  min-height: 325px;
  padding: 40px 32px 44px;
  border-radius: 20px;
  max-width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.ai-services__custom-bg {
  position: absolute;
  top: -142px;
  left: -172px;
  width: 441px;
  height: 440px;
  object-fit: cover;
  pointer-events: none;
}

.ai-services__custom-num {
  margin-bottom: 14px;
}

.ai-services__custom-num span {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: #8147bb;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.ai-services__custom-line {
  width: 362px;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.ai-services__custom h4 {
  margin: 0 0 22px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: #190e3a;
  position: relative;
  z-index: 1;
}

.ai-services__custom p {
  max-width: 616px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  color: #484848;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   5. INDUSTRY BLUEPRINTS
   ========================================================================== */
.ai-blueprints {
  padding: 80px 0;
}

.ai-blueprints__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ai-blueprints__tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  padding: 0 40px;
  background: transparent;
  border: none;
  border-radius: 20px;
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #888;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}

.ai-blueprints__tab span {
  margin-left: 16px;
  font-size: 34px;
  line-height: 1;
  color: var(--ai-cyan);
  opacity: 0;
  transition: opacity 0.2s;
}

.ai-blueprints__tab:hover {
  color: #6f6f6f;
}

.ai-blueprints__tab.is-active {
  background: var(--ai-navy);
  color: #fff;
  min-height: 87px;
  font-size: 26px;
  font-weight: 700;
}

.ai-blueprints__tab.is-active span {
  opacity: 1;
}

.ai-blueprints__panel {
  display: none;
  background: rgba(240, 240, 240, 0.9);
  border-radius: 20px;
  padding: 40px 46px 20px;
  min-height: 499px;
  position: relative;
  overflow: hidden;
}

.ai-blueprints__panel::after {
  content: "";
  position: absolute;
  top: 112px;
  right: -12px;
  width: 233px;
  height: 250px;
  transform: rotate(-23.66deg);
  background-image: url("src/assets/images/ai-as-a-service/Ellipse 10.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.ai-blueprints__panel > * {
  position: relative;
  z-index: 1;
}

.ai-blueprints__panel.is-active {
  display: block;
}

.ai-blueprints__panel-num {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ai-purple);
}

.ai-blueprints__panel-line {
  width: 299px;
  max-width: 100%;
  height: 5px;
  margin: 10px 0 28px;
  background-image: url("src/assets/images/ai-as-a-service/Vector 35.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.ai-blueprints__panel h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #888;
  margin-bottom: 16px;
}

.ai-blueprints__panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ai-blueprints__panel > ul:not(.ai-blueprints__outcomes) {
  list-style: disc;
  list-style-position: outside;
  padding-left: 20px;
}

.ai-blueprints__panel > ul:not(.ai-blueprints__outcomes) li {
  padding: 0;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #484848;
}

.ai-blueprints__panel > ul:not(.ai-blueprints__outcomes) li::before {
  content: none;
}

.ai-blueprints__fit {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #484848;
}

.ai-blueprints__outcomes-label {
  margin-top: 24px;
  color: var(--ai-purple) !important;
}

.ai-blueprints__outcomes li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='7' stroke='%238147BB' stroke-width='2'/%3E%3Cpath d='M5.8 9.2l2.1 2.1 4.4-4.4' stroke='%238147BB' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.ai-blueprints__outcomes li {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #000;
}

.ai-blueprints__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.ai-blueprints__cta.ai-btn {
  padding: 20px 30px;
  border-radius: 40px;
  gap: 20px;
  font-size: 18px;
  font-weight: 500;
}

/* ==========================================================================
   6. HOW WE WORK / PROCESS
   ========================================================================== */
.ai-process {
  padding: 80px 0;
  background: #fcfcfc;
  position: relative;
  overflow: hidden;
}

.ai-process__blob {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 400px;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.ai-process__subtitle {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  color: #484848;
}

.ai-process h2 {
  position: relative;
  font-size: 52px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 60px;
  color: #190e3a;
}

.ai-process__title-mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.ai-process__title-mark::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 57px;
  width: calc(100% + 12px);
  aspect-ratio: 312 / 30;
  height: auto;
  background: url("src/assets/images/ai-as-a-service/messy-reality-underline.svg")
    no-repeat center / 100% 100%;
  pointer-events: none;
}

.ai-process__map {
  position: relative;
  width: 261px;
  max-width: 100%;
  min-height: 141px;
  margin-left: auto;
  padding-left: 20px;
}

.ai-process__map::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 141px;
  background: var(--ai-purple);
}

.ai-process__map h5 {
  width: auto;
  margin: 0 0 13px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ai-purple);
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: left;
}

.ai-process__map p {
  width: 240px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #888;
  margin: 0;
  text-align: left;
}

.ai-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
  align-items: start;
}

.ai-process__steps::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("src/assets/images/ai-as-a-service/how-we-work-bg-desktop.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
}

.ai-process__steps::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52px;
  z-index: 0;
  width: 560px;
  aspect-ratio: 563 / 562;
  background-image: url("src/assets/images/ai-as-a-service/messy-realit-grid.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.ai-process__step {
  z-index: 1;
  height: 470px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(185, 185, 185, 0.25);
  padding: 29px 20px 21px;
  position: relative;
  transition: transform 0.3s;
}

.ai-process__step:nth-child(1) {
  margin-top: 80px;
}
.ai-process__step:nth-child(2) {
  margin-top: 60px;
}
.ai-process__step:nth-child(3) {
  margin-top: 40px;
}
.ai-process__step:nth-child(4) {
  margin-top: 20px;
}

.ai-process__step::before {
  content: none;
}

.ai-process__step:hover {
  transform: translateY(-2px);
}

.ai-process__step-num {
  display: block;
  text-align: right;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #888;
}

.ai-process__step-icon {
  width: 130px;
  height: 130px;
  margin: 57px auto 0;
  border: 1px solid #d9e5f4;
  border-radius: 20px;
  background: #edf5ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-process__step-icon img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.ai-process__step h4 {
  margin: 40px 0 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  color: #190e3a;
}

.ai-process__step p {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #484848;
}

.ai-process__step-divider {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 370px;
  border-top: 2px dotted #f0f0f0;
}

.ai-process__ships {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 389px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.ai-process__ships-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #888;
}

.ai-process__ships-label::before {
  content: "";
  width: 20px;
  height: 15px;
  flex: 0 0 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='15' viewBox='0 0 20 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6.36377C0.447715 6.36377 0 6.81148 0 7.36377C0 7.91605 0.447715 8.36377 1 8.36377V7.36377V6.36377ZM19.7071 8.07088C20.0976 7.68035 20.0976 7.04719 19.7071 6.65666L13.3431 0.292702C12.9526 -0.0978227 12.3195 -0.0978227 11.9289 0.292702C11.5384 0.683226 11.5384 1.31639 11.9289 1.70692L17.5858 7.36377L11.9289 13.0206C11.5384 13.4111 11.5384 14.0443 11.9289 14.4348C12.3195 14.8254 12.9526 14.8254 13.3431 14.4348L19.7071 8.07088ZM1 7.36377V8.36377H19V7.36377V6.36377H1V7.36377Z' fill='%235FFFE2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.ai-process__deliverable {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: center;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  background: var(--ai-navy);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  white-space: nowrap;
}

.ai-process__deliverable::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  min-width: 6px;
  min-height: 6px;
  border-radius: 50%;
  background: #5fffe2;
}

.ai-process__transition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 103px;
  text-align: center;
}

.ai-process__transition-line {
  display: block;
  flex: 0 0 auto;
  height: 5px;
}

.ai-process__transition-line--desktop {
  width: 115px;
}

.ai-process__transition-line--mobile {
  display: none;
}

.ai-process__transition-text {
  margin: 0;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ai-purple);
}

.ai-process__transition-primary {
  color: var(--ai-navy);
}

.ai-process__transition-accent {
  color: var(--ai-purple);
}

/* ==========================================================================
   7. CASE STUDIES
   ========================================================================== */
.ai-cases {
  padding: 117px 0 70px;
  background: linear-gradient(61.86deg, #190e3a -0.36%, #321880 100%);
  color: #fff;
  overflow: hidden;
}

.ai-cases .grid-container {
  max-width: 1440px;
  padding-left: 60px;
  padding-right: 60px;
}

.ai-cases__eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 71px;
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ai-cases__eyebrow-line {
  width: 42px;
  border-top: 2px solid #5fffe2;
}

.ai-cases__layout {
  display: flex;
  flex-direction: column;
  gap: 87px;
}

.ai-case-card {
  position: relative;
  border: 1px solid #888888;
  border-radius: 20px;
  background: linear-gradient(180deg, #413072 0%, #433373 50%, #463676 100%);
}

.ai-case-card__corner {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url("src/assets/images/ai-as-a-service/Vector 40.svg") center /
    contain no-repeat;
  pointer-events: none;
  z-index: 1;
}

.ai-case-card__corner--tl {
  top: -11px;
  left: -10px;
  transform: rotate(0deg);
}

.ai-case-card__corner--tr {
  top: -11px;
  right: -11px;
  transform: rotate(90deg);
}

.ai-case-card__corner--br {
  bottom: -11px;
  right: -11px;
  transform: rotate(180deg);
}

.ai-case-card__corner--bl {
  bottom: -11px;
  left: -10px;
  transform: rotate(270deg);
}

.ai-case-card__corner--sm-tr {
  top: -11px;
  right: -11px;
  transform: rotate(90deg);
}

.ai-case-card__corner--sm-br {
  bottom: -11px;
  right: -11px;
  transform: rotate(180deg);
}

.ai-case-card__corner--sm-bl {
  bottom: -11px;
  left: -10px;
  transform: rotate(270deg);
}

.ai-case-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 59px;
  padding: 16px 30px 14px 40px;
  border-bottom: 1px solid #888888;
}

.ai-case-card__tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
}

.ai-case-card__tag-prefix {
  color: var(--ai-light-blue);
}

.ai-case-card__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 27px;
  padding: 3px 20px 3px 10px;
  border: 1px solid #5fffe2;
  border-radius: 40px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #5fffe2;
  box-shadow: 0 4px 5px rgba(212, 212, 212, 0.25);
}

.ai-case-card__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fffe2;
}

.ai-case-card__body {
  display: grid;
  grid-template-columns: minmax(0, 729px) minmax(0, 1fr);
}

.ai-case-card__left {
  padding: 27px 29px 62px 40px;
}

.ai-page .ai-case-card__brand {
  margin: 0 0 36px;
  color: #fff;
  font-size: 70px;
  font-style: italic;
  font-weight: 700;
  line-height: 51px;
  letter-spacing: -1px;
  text-transform: lowercase;
}

.ai-page .ai-case-card__brand img {
  display: block;
  width: 110px;
  max-width: 100%;
  height: auto;
}

.ai-page .ai-case-card__brand--text {
  font-style: normal;
  letter-spacing: -0.02em;
  text-transform: none;
}

.ai-page .ai-case-card__brand--neuraltrade img {
  width: 360px;
}

.ai-case-card__label {
  margin-bottom: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ai-case-card__label::before {
  content: "";
  display: inline-block;
  width: 21px;
  border-top: 2px solid currentColor;
  margin: 0 10px 4px 0;
}

.ai-case-card__label--red {
  color: #f65a5a;
}

.ai-case-card__label--cyan {
  color: #97ebff;
}

.ai-case-card__copy {
  margin: 0 0 36px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.ai-case-card__pipeline {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #707070;
}

.ai-case-card__pipeline-title {
  display: block;
  margin-bottom: 23px;
  color: #888888;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.ai-case-card__pipeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.ai-case-card__pipeline-track span {
  position: relative;
  z-index: 1;
  padding-top: 35px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
}

.ai-case-card__pipeline-track span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid #5fffe2;
  border-radius: 50%;
  transform: translateX(-50%);
}

.ai-case-card__pipeline-track span::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8147bb;
  transform: translateX(-50%);
}

.ai-case-card__telemetry {
  padding: 30px 29px 26px;
  border-left: 1px solid #888888;
  border-bottom-right-radius: 20px;
  background: #190e3a;
}

.ai-page .ai-case-card__telemetry h4 {
  margin: 0 0 29px;
  color: #888888;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.ai-case-card__metric {
  position: relative;
  min-height: 93px;
  padding: 17px 26px 14px;
  border: 1px solid #888888;
  border-radius: 10px;
  background: linear-gradient(61.86deg, #190e3a -0.36%, #321880 100%);
}

.ai-case-card__metric + .ai-case-card__metric {
  margin-top: 20px;
}

.ai-case-card__metric strong {
  display: block;
  margin: 0 0 16px;
  color: #5fffe2;
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 30px;
}

.ai-case-card__metric-label {
  display: block;
  color: #cacaca;
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.ai-case-card__metric-tag {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 20px;
  border-left: 1px solid #888888;
  border-bottom: 1px solid #888888;
  border-bottom-left-radius: 9px;
  background: #190e3a;
  color: #5fffe2;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
}

.ai-cases__small-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ai-case-card--sm {
  min-height: 490px;
  padding: 0 40px 19px;
}

.ai-case-card__top--sm {
  margin: 0 -40px;
  padding: 16px 30px 14px 40px;
}

.ai-page .ai-case-card__title {
  margin: 40px 0 34px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}

.ai-case-card__chart-panel {
  border: 1px solid #888888;
  border-radius: 10px;
  background: linear-gradient(61.86deg, #190e3a -0.36%, #321880 100%);
  padding: 11px 26px 13px;
}

.ai-case-card__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #f0f0f0;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}

.ai-case-card__chart-accent {
  color: #97ebff;
}

.ai-case-card__chart-body {
  position: relative;
  margin-top: 9px;
  height: 116px;
}

.ai-case-card__chart-grid {
  position: absolute;
  left: -11px;
  right: -11px;
  top: 0;
  width: calc(100% + 22px);
  height: 103px;
  object-fit: cover;
  opacity: 0.8;
}

.ai-case-card__chart-svg {
  position: absolute;
  display: block;
  pointer-events: none;
}

.ai-case-card__chart-svg--forecast {
  left: 84px;
  top: 0;
  width: 347px;
  height: 110px;
}

.ai-case-card__chart-svg--dispatch-cyan {
  left: 45px;
  top: 18px;
  width: 426px;
  height: 52px;
}

.ai-case-card__chart-svg--dispatch-purple {
  left: 40px;
  top: 40px;
  width: 219px;
  height: 38px;
}

.ai-case-card__chart-point {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ai-case-card__chart-point::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid currentColor;
}

.ai-case-card__chart-point--cyan-left {
  left: 34px;
  top: 69px;
  color: #5fffe2;
  background: #5fffe2;
}

.ai-case-card__chart-point--cyan-right {
  right: 19px;
  top: 9px;
  color: #5fffe2;
  background: #5fffe2;
}

.ai-case-card__chart-point--purple {
  left: 260px;
  top: 31px;
  color: #8147bb;
  background: #8147bb;
}

.ai-case-card__chart-legend {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 3px;
}

.ai-case-card__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f0f0f0;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}

.ai-case-card__legend-item::before {
  content: "";
  width: 13.5px;
  border-top: 1px solid currentColor;
}

.ai-case-card__legend-item--purple {
  color: #8147bb;
}

.ai-case-card__legend-item--cyan {
  color: #5fffe2;
}

.ai-case-card__legend-item--blue {
  color: #97ebff;
}

.ai-case-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.ai-case-card__stat strong {
  display: block;
  margin: 0 0 16px;
  color: #5fffe2;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.ai-case-card__stat span {
  color: #cacaca;
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-transform: none;
}

/* ==========================================================================
   8. SIX LAYERS / TECH STACK
   ========================================================================== */
.ai-stack {
  padding: 80px 0;
  background: #fff;
}

.work-with-tools {
  width: 197px;
  height: 26px;
  margin-top: 0;
}

.ai-stack__layers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.ai-stack__layer {
  --ai-stack-accent: var(--ai-navy);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(15px, 5vw, 5vw);
  flex-wrap: wrap;
  border: 1px solid var(--ai-border);
  border-left: 9px solid var(--ai-stack-accent);
  border-bottom: 16px solid var(--ai-stack-accent);
  border-radius: 12px;
  padding: 32px 28px 27px 41px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.ai-stack__layer:nth-child(1) {
  --ai-stack-accent: #8147bb;
}
.ai-stack__layer:nth-child(2) {
  --ai-stack-accent: #5fffe2;
}
.ai-stack__layer:nth-child(3) {
  --ai-stack-accent: #97ebff;
}
.ai-stack__layer:nth-child(4) {
  --ai-stack-accent: #edf5ff;
}
.ai-stack__layer:nth-child(5) {
  --ai-stack-accent: #8147bb;
}
.ai-stack__layer:nth-child(6) {
  --ai-stack-accent: #5fffe2;
}

.ai-stack__layer:hover {
  border-top-color: rgba(92, 255, 226, 0.45);
  border-right-color: rgba(92, 255, 226, 0.45);
  box-shadow: 0 8px 20px rgba(25, 14, 58, 0.06);
}

.ai-stack__layer-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  min-width: 160px;
}

.ai-stack__layer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ai-stack__layer-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-stack__layer-icon img {
  width: 70px;
  height: 70px;
  display: block;
}

.ai-stack__layer-copy strong {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  color: #190e3a;
  margin: 0 0 11px;
}

.ai-stack__layer-copy small {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #888888;
}

.ai-stack__layer-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  align-self: start;
  padding-top: 20px;
}

.ai-stack__pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid #cacaca;
  white-space: nowrap;
  line-height: 22px;
  color: #000000;
  letter-spacing: 0;
  cursor: help;
}

.ai-stack__pill:focus {
  outline: none;
}

.ai-stack__pill:focus-visible {
  border-color: var(--ai-purple);
  box-shadow: 0 0 0 3px rgba(129, 71, 187, 0.14);
}

.ai-stack__pill[data-tooltip]::before,
.ai-stack__pill[data-tooltip]::after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.ai-stack__pill[data-tooltip]::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  transform: translateX(-50%) translateY(4px);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #190e3a;
  z-index: 6;
}

.ai-stack__pill[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  width: 220px;
  max-width: calc(100vw - 48px);
  padding: 10px 12px;
  border-radius: 10px;
  background: #190e3a;
  box-shadow: 0 10px 24px rgba(25, 14, 58, 0.2);
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
  white-space: normal;
  z-index: 5;
}

.ai-stack__pill[data-tooltip]:hover::before,
.ai-stack__pill[data-tooltip]:hover::after,
.ai-stack__pill[data-tooltip]:focus::before,
.ai-stack__pill[data-tooltip]:focus::after,
.ai-stack__pill[data-tooltip]:focus-visible::before,
.ai-stack__pill[data-tooltip]:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ai-stack__why {
  flex-basis: 100%;
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 19px;
  color: #888;
  max-width: 760px;
}

.ai-stack__footer {
  text-align: center;
  margin-top: 48px;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  color: #190e3a;
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ai-stack__footer-line {
  width: 118px;
  height: 8px;
  display: block;
}

.ai-stack__footer-text {
  display: inline-block;
  color: #190e3a;
}

.ai-stack__footer-primary {
  color: #190e3a;
}

.ai-stack__footer-accent {
  color: #8147bb;
}

/* ==========================================================================
   9. WHY BLUEBERRY
   ========================================================================== */
.ai-why-bb {
  padding: 80px 0;
  background: var(--ai-gray);
}

.ai-why-bb .ai-section-label {
  gap: 20px;
  margin-bottom: 74px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  letter-spacing: 0;
  color: #8147bb;
}

.ai-why-bb .ai-label-line {
  width: 42px;
  height: 2px;
  background: #5fffe2;
}

.ai-why-bb__grid {
  margin-top: 0;
  margin-bottom: 0;
}

.ai-why-bb__grid > .cell:nth-child(n + 4) {
  margin-top: 57px;
}

.ai-why-bb__item {
  padding: 0;
}

.ai-why-bb__num {
  font-size: 52px;
  font-weight: 700;
  line-height: 70px;
  color: #cacaca;
  display: block;
  margin-bottom: 11px;
}

.ai-why-bb__item h4 {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1666666667;
}

.ai-why-bb__item p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1666666667;
  color: #888888;
}

/* ==========================================================================
   10. FAQ
   ========================================================================== */
.ai-faq {
  padding: 80px 0;
  background: #fff;
}

.ai-faq .ai-section-label {
  gap: 20px;
  margin-bottom: 78px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  letter-spacing: 0;
  color: #8147bb;
}

.ai-faq .ai-label-line {
  width: 42px;
  height: 2px;
  background: #5fffe2;
}

.ai-faq__list {
  width: 100%;
  max-width: none;
}

.ai-faq__item {
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
  transition: border-color 0.25s ease;
}

.ai-faq__item + .ai-faq__item {
  margin-top: 40px;
}

.ai-faq__item summary {
  width: 100%;
  padding: 0 0 18px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1666666667;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #190e3a;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.ai-faq__item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--ai-navy);
  border-bottom: 2px solid var(--ai-navy);
  transform: rotate(45deg);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.ai-faq__item[open] summary::after {
  transform: rotate(-135deg);
}

.ai-faq__item summary::-webkit-details-marker {
  display: none;
}

.ai-faq__item p {
  padding: 0 0 20px;
  font-size: 0.92rem;
  color: var(--ai-text-light);
  line-height: 1.6;
  max-width: 720px;
}

.ai-faq__item ul {
  margin: 0 0 20px 20px;
  padding: 0;
  max-width: 720px;
}

.ai-faq__item li {
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: var(--ai-text-light);
  line-height: 1.6;
}

.ai-faq__item li:last-child {
  margin-bottom: 0;
}

.ai-faq__item summary:focus-visible {
  outline: none;
  color: #8147bb;
}

@media (hover: hover) and (pointer: fine) {
  .ai-faq__item:hover {
    border-bottom-color: #8147bb;
  }

  .ai-faq__item:hover summary {
    color: #8147bb;
    transform: translateX(6px);
  }

  .ai-faq__item:hover summary::after {
    border-right-color: #8147bb;
    border-bottom-color: #8147bb;
    transform: translateX(2px) rotate(45deg);
  }

.ai-faq__item[open]:hover summary::after {
    transform: translateX(2px) rotate(-135deg);
  }
}

/* ==========================================================================
   11. TEAM
   ========================================================================== */
.ai-team-section {
  margin-top: 80px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ai-team-section .ai-section-label {
  gap: 20px;
  margin-bottom: 78px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  letter-spacing: 0;
  color: #8147bb;
}

.ai-team-section .ai-label-line {
  width: 42px;
  height: 2px;
  background: #5fffe2;
}

.ai-team-section .team-new {
  margin-bottom: 0;
}

/* ==========================================================================
   12. BOTTOM CTA
   ========================================================================== */
.ai-bottom-cta {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.ai-bottom-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: var(--ai-purple);
  border-radius: 40% 60% 60% 40%;
  opacity: 0.8;
  z-index: 0;
}

.ai-bottom-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.ai-bottom-cta > .grid-container > .grid-x > .cell:first-child p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: var(--ai-text-light);
  margin-bottom: 32px;
  max-width: 500px;
}

.ai-contact {
  position: relative;
  z-index: 1;
}

.ai-contact h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.ai-contact__checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.ai-contact__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
}

.ai-contact hr {
  border: none;
  border-top: 1px solid var(--ai-border);
  margin: 24px 0;
}

.ai-contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-contact__details small {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ai-text-light);
  margin-bottom: 4px;
}

.ai-contact__details a {
  color: var(--ai-navy);
  text-decoration: none;
  font-weight: 500;
}

.ai-contact__details a:hover {
  color: var(--ai-purple);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media screen and (max-width: 63.9375em) {
  .ai-page h1 {
    font-size: 2.2rem;
  }
  .ai-page h2 {
    font-size: 1.8rem;
  }

  .ai-hero {
    padding: 80px 0 40px;
    min-height: auto;
  }

  .ai-hero__text {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .ai-hero h1 {
    max-width: 594px;
    font-size: 52px;
    line-height: 70px;
  }

  .ai-hero__subtitle {
    max-width: 650px;
    font-size: 22px;
    line-height: 30px;
  }

  .ai-orch__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ai-orch__inputs,
  .ai-orch__outputs {
    flex-direction: row;
    justify-content: center;
  }

  .ai-orch__node::after {
    display: none;
  }

  .ai-orch__center {
    display: flex;
    justify-content: center;
  }

  .ai-outcomes__inner {
    max-width: 640px;
    min-height: 92px;
    gap: 16px;
    padding: 0 24px;
  }

  .ai-outcomes__items {
    gap: 16px;
  }

  .ai-outcomes__item {
    font-size: 15px;
  }

  .ai-outcomes__chevron {
    height: 28px;
  }

  .ai-blueprints__tab {
    min-height: 64px;
    padding: 0 24px;
    font-size: 20px;
  }

  .ai-blueprints__tab span {
    font-size: 28px;
  }

  .ai-blueprints__tab.is-active {
    min-height: 72px;
    font-size: 22px;
  }

  .ai-blueprints__panel {
    padding: 30px 24px 18px;
    min-height: 0;
  }

  .ai-blueprints__panel::after {
    top: 128px;
    right: -24px;
    width: 180px;
    height: 190px;
  }

  .ai-blueprints__panel-line {
    width: 240px;
    margin-bottom: 22px;
  }

  .ai-blueprints__cta.ai-btn {
    padding: 16px 24px;
    font-size: 16px;
  }

  .ai-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-process__steps::after {
    top: 50%;
    width: min(520px, calc(100% - 48px));
    transform: translate(-50%, -50%);
  }

  .ai-process__transition {
    gap: 24px;
    margin-top: 88px;
  }

  .ai-process__transition-line--desktop {
    width: 96px;
  }

  .ai-process__transition-text {
    font-size: 20px;
  }

  .ai-process h2 {
    font-size: 52px;
    line-height: 70px;
  }

  .ai-process__subtitle {
    font-size: 22px;
    line-height: 30px;
  }

  .ai-process__step {
    height: auto;
    min-height: 420px;
    padding: 29px 20px 21px;
  }

  .ai-process__step-icon {
    width: 130px;
    height: 130px;
    margin-top: 57px;
  }

  .ai-process__step-icon img {
    width: 80px;
    height: 80px;
  }

  .ai-process__step h4 {
    margin-top: 40px;
    font-size: 26px;
    line-height: 30px;
  }

  .ai-process__step-divider {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    margin-top: 34px;
  }

  .ai-process__ships {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    margin-top: 18px;
  }

  .ai-process__step:nth-child(1),
  .ai-process__step:nth-child(2),
  .ai-process__step:nth-child(3),
  .ai-process__step:nth-child(4) {
    margin-top: 0;
  }

  .ai-cases {
    padding: 84px 0 60px;
  }

  .ai-cases .grid-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ai-cases__eyebrow {
    margin-bottom: 44px;
  }

  .ai-cases__layout {
    gap: 48px;
  }

  .ai-case-card__corner {
    display: none;
  }

  .ai-case-card__top {
    padding: 14px 24px 13px;
  }

  .ai-case-card__tag {
    font-size: 13px;
    line-height: 17px;
  }

  .ai-case-card__status {
    font-size: 14px;
    line-height: 17px;
    padding: 3px 14px 3px 9px;
  }

  .ai-case-card__body {
    grid-template-columns: 1fr;
  }

  .ai-case-card__left {
    padding: 24px 24px 32px;
  }

  .ai-page .ai-case-card__brand {
    margin-bottom: 28px;
    font-size: 56px;
    line-height: 42px;
  }

  .ai-page .ai-case-card__brand img {
    width: 98px;
  }

  .ai-page .ai-case-card__brand--neuraltrade img {
    width: 320px;
  }

  .ai-case-card__copy {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 28px;
  }

  .ai-case-card__pipeline {
    margin-top: 16px;
    padding-top: 22px;
  }

  .ai-case-card__pipeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 20px;
  }

  .ai-case-card__telemetry {
    border-top: 1px solid #888888;
    border-left: 0;
    border-bottom-left-radius: 20px;
    padding: 24px;
  }

  .ai-case-card__metric strong {
    font-size: 42px;
  }

  .ai-case-card__metric-label {
    font-size: 16px;
    line-height: 22px;
  }

  .ai-cases__small-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ai-case-card--sm {
    min-height: 0;
    padding: 0 24px 24px;
  }

  .ai-case-card__top--sm {
    margin: 0 -24px;
    padding: 14px 24px 13px;
  }

  .ai-page .ai-case-card__title {
    margin: 28px 0 24px;
    font-size: 28px;
    line-height: 34px;
  }

  .ai-case-card__chart-panel {
    padding: 11px 18px 13px;
  }

  .ai-case-card__chart-svg--forecast {
    left: 24px;
  }

  .ai-case-card__chart-svg--dispatch-cyan {
    left: -8px;
    width: 390px;
  }

  .ai-case-card__chart-svg--dispatch-purple {
    left: -12px;
  }

  .ai-case-card__chart-point--cyan-right {
    right: -10px;
  }

  .ai-stack__layer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .ai-stack__layer-main {
    gap: 20px;
  }

  .ai-stack__layer-copy strong {
    margin-bottom: 0;
  }

  .ai-stack__layer-tags {
    align-self: stretch;
    padding-top: 0;
  }

  .ai-stack__why {
    margin-top: 2px;
    font-size: 12px;
    line-height: 18px;
  }

  .ai-stack__footer {
    gap: 12px;
  }

  .ai-stack__footer-line {
    width: 88px;
  }

  .ai-bottom-cta h2 {
    font-size: 1.8rem;
  }

  .ai-process__blob {
    width: 300px;
    top: -40px;
    right: -40px;
  }

  .ai-hero__underline {
    width: min(603px, 100%);
  }

  .ai-services .ai-section-label {
    margin-bottom: 40px;
  }

  .ai-page h2.ai-services__title {
    max-width: 362px;
    font-size: 32px;
    line-height: 46px;
  }

  .ai-services__title-underline {
    width: 181px;
    margin-top: 18px;
    margin-bottom: 60px;
  }

  .ai-services__subtitle {
    max-width: 361px;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 30px;
  }

  .ai-services__custom {
    min-height: 300px;
    padding: 28px 24px 34px;
  }

  .ai-service-card {
    min-height: 380px;
    padding: 22px 20px 20px;
  }

  .ai-service-card__num,
  .ai-service-card__cat {
    font-size: 14px;
    line-height: 18px;
  }

  .ai-service-card__line {
    margin-bottom: 20px;
  }

  .ai-service-card h4 {
    font-size: 21px;
  }

  .ai-service-card__lead {
    font-size: 18px;
    line-height: 26px;
  }

  .ai-service-card__detail {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 21px;
  }

  .ai-service-card__tags span {
    padding: 7px 10px;
  }

  .ai-services__custom-bg {
    top: -150px;
    left: -210px;
    width: 420px;
    height: 420px;
  }

  .ai-services__custom-num span {
    font-size: 22px;
  }

  .ai-services__custom-line {
    width: 280px;
    margin-bottom: 22px;
  }

  .ai-services__custom h4 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .ai-services__custom p {
    font-size: 18px;
    line-height: 24px;
  }

  .ai-bottom-cta::before {
    display: none;
  }
}

@media screen and (max-width: 39.9375em) {
  .ai-page h1 {
    font-size: 1.8rem;
  }
  .ai-page h2 {
    font-size: 1.5rem;
  }
  .ai-section-label {
    font-size: 14px;
  }

  .ai-hero {
    padding: 60px 0 30px;
  }

  .ai-hero h1 {
    max-width: 362px;
    font-size: 42px;
    line-height: 46px;
  }

  .ai-hero__underline {
    width: 282px;
    margin-top: 12px;
    margin-bottom: 28px;
  }

  .ai-hero__subtitle {
    max-width: 361px;
    font-size: 20px;
    line-height: 30px;
  }

  .ai-hero__visual {
    display: none;
  }

  .ai-hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .ai-hero__ctas .ai-btn {
    width: min(214px, 100%);
    max-width: 100%;
    align-self: flex-start;
    text-align: center;
    justify-content: center;
  }

  .ai-compare-card__icon--right {
    top: -26px;
    right: -8px;
    width: 131px;
    height: 176px;
    object-fit: cover;
    object-position: center;
  }

  .ai-orch__inputs,
  .ai-orch__outputs {
    flex-direction: column;
  }

  .ai-orch__node {
    padding: 12px;
  }

  .ai-outcomes__inner {
    max-width: 326px;
    min-height: 104px;
    gap: 12px;
    padding: 0;
    background-size: 326px 72px;
    background-position: center bottom;
  }

  .ai-outcomes__label {
    font-size: 14px;
    line-height: 20px;
  }

  .ai-outcomes__items {
    width: 100%;
    gap: 13px;
    flex-wrap: nowrap;
  }

  .ai-outcomes__item {
    width: 75px;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    white-space: normal;
  }

  .ai-outcomes__chevron {
    width: 15px;
    height: 27px;
  }

  .ai-stack__footer-line {
    width: 64px;
  }

  .ai-stack__layer {
    padding: 14px 12px 24px 11px;
    gap: 20px;
  }

  .ai-stack__layer-tags {
    padding-top: 0;
  }

  .ai-stack__why {
    font-size: 12px;
    line-height: 18px;
  }

  .ai-process__steps {
    grid-template-columns: 1fr;
  }

  .ai-process__steps::before {
    background-image: url("src/assets/images/ai-as-a-service/how-we-work-bg-mobile.svg");
  }

  .ai-process__steps::after {
    top: 0;
    bottom: 0;
    width: calc(100% - 32px);
    height: auto;
    display: none;
    aspect-ratio: auto;
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100% 562px;
    transform: translateX(-50%);
  }

  .ai-process h2 {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 20px;
  }

  .ai-process__title-mark::after {
    left: -1px;
    top: 43.1px;
    width: calc(100% + 8px);
    aspect-ratio: 312 / 30;
    height: auto;
    background-image: url("src/assets/images/ai-as-a-service/messy-reality-underline.svg");
  }

  .ai-process__subtitle {
    font-size: 20px;
    line-height: 30px;
  }

  .ai-process__map {
    margin-left: 0;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 30px;
  }

  .ai-process__step {
    width: min(245px, 100%);
    aspect-ratio: 245 / 420;
    height: auto;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 29px 20px 21px;
    text-align: center;
  }

  .ai-process__step-icon {
    width: 130px;
    height: 130px;
    margin-top: 15px;
  }

  .ai-process__step-icon img {
    width: 80px;
    height: 80px;
  }

  .ai-process__step h4 {
    margin-top: 20px;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
  }

  .ai-process__step-divider {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    margin-top: 24px;
  }

  .ai-process__ships {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    margin-top: 18px;
    align-items: center;
  }

  .ai-process__ships-label {
    justify-content: center;
    text-align: center;
  }

  .ai-process__deliverable {
    align-self: stretch;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
    text-align: left;
  }

  .ai-process__transition {
    gap: 12px;
    margin-top: 48px;
  }

  .ai-process__transition-line--desktop {
    display: none;
  }

  .ai-process__transition-line--mobile {
    display: block;
    width: 39px;
  }

  .ai-process__transition-text {
    width: 195px;
    font-size: 18px;
    line-height: 1.35;
  }

  .ai-process__transition-primary,
  .ai-process__transition-accent {
    display: block;
  }

  .ai-cases {
    padding: 64px 0 56px;
  }

  .ai-cases .grid-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ai-cases__eyebrow {
    gap: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 18px;
  }

  .ai-cases__eyebrow-line {
    width: 32px;
  }

  .ai-case-card {
    border-radius: 16px;
  }

  .ai-case-card__top {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    min-height: 0;
    padding: 14px 16px 13px;
  }

  .ai-case-card__tag {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 12px;
    line-height: 16px;
  }

  .ai-case-card__status {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 4px 20px 4px 10px;
    font-size: 12px;
    line-height: 14px;
  }

  .ai-case-card__left {
    padding: 20px 16px 24px;
  }

  .ai-page .ai-case-card__brand {
    margin-bottom: 22px;
    font-size: 44px;
    line-height: 34px;
  }

  .ai-page .ai-case-card__brand img {
    width: 86px;
  }

  .ai-page .ai-case-card__brand--neuraltrade img {
    width: 240px;
  }

  .ai-case-card__label {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 14px;
  }

  .ai-case-card__copy {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 22px;
  }

  .ai-case-card__pipeline-title {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 16px;
  }

  .ai-case-card__pipeline-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .ai-case-card__pipeline-track span {
    padding-top: 39px;
    font-size: 12px;
    line-height: 14px;
  }

  .ai-case-card__pipeline-track span::before {
    width: 36px;
    height: 36px;
  }

  .ai-case-card__pipeline-track span::after {
    top: 11px;
    width: 14px;
    height: 14px;
  }

  .ai-case-card__telemetry {
    padding: 18px 16px 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .ai-page .ai-case-card__telemetry h4 {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 16px;
  }

  .ai-case-card__metric {
    min-height: 0;
    padding: 12px 14px 12px;
  }

  .ai-case-card__metric + .ai-case-card__metric {
    margin-top: 12px;
  }

  .ai-case-card__metric strong {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 30px;
  }

  .ai-case-card__metric-label {
    font-size: 14px;
    line-height: 19px;
  }

  .ai-case-card__metric-tag {
    width: 74px;
    height: 18px;
    font-size: 10px;
    line-height: 12px;
  }

  .ai-cases__small-grid {
    gap: 20px;
  }

  .ai-case-card--sm {
    padding: 0 16px 18px;
  }

  .ai-case-card__top--sm {
    margin: 0 -16px;
    padding: 14px 16px 13px;
  }

  .ai-page .ai-case-card__title {
    margin: 22px 0 18px;
    font-size: 24px;
    line-height: 30px;
  }

  .ai-case-card__chart-panel {
    padding: 10px 12px 12px;
  }

  .ai-case-card__chart-head {
    font-size: 11px;
    line-height: 14px;
  }

  .ai-case-card__chart-body {
    height: 98px;
    margin-top: 8px;
  }

  .ai-case-card__chart-grid {
    left: -8px;
    right: -8px;
    width: calc(100% + 16px);
    height: 90px;
  }

  .ai-case-card__chart-svg--forecast {
    left: -4px;
    width: 300px;
    height: 95px;
  }

  .ai-case-card__chart-svg--dispatch-cyan {
    left: -16px;
    top: 12px;
    width: 315px;
    height: 46px;
  }

  .ai-case-card__chart-svg--dispatch-purple {
    left: -18px;
    top: 31px;
    width: 168px;
    height: 32px;
  }

  .ai-case-card__chart-point--cyan-left {
    left: 0;
    top: 58px;
  }

  .ai-case-card__chart-point--cyan-right {
    right: -9px;
    top: 6px;
  }

  .ai-case-card__chart-point--purple {
    left: 174px;
    top: 23px;
  }

  .ai-case-card__chart-legend {
    gap: 14px;
    margin-top: 4px;
    flex-wrap: wrap;
  }

  .ai-case-card__legend-item {
    font-size: 11px;
    line-height: 14px;
  }

  .ai-case-card__stats {
    margin-top: 22px;
    gap: 12px;
  }

  .ai-case-card__stat strong {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 24px;
  }

  .ai-case-card__stat span {
    font-size: 14px;
    line-height: 18px;
  }

  .ai-process__step:nth-child(1) {
    margin-top: 0;
  }

  .ai-blueprints__tab {
    min-height: 56px;
    padding: 0 18px;
    font-size: 18px;
  }

  .ai-blueprints__tab span {
    font-size: 24px;
  }

  .ai-blueprints__tab.is-active {
    min-height: 62px;
    font-size: 20px;
  }

  .ai-blueprints__panel {
    padding: 24px 18px 16px;
    min-height: 0;
  }

  .ai-blueprints__panel.is-active {
    margin-top: 20px;
  }

  .ai-blueprints__panel::after {
    top: 110px;
    right: -38px;
    width: 155px;
    height: 165px;
  }

  .ai-blueprints__panel-num {
    font-size: 14px;
  }

  .ai-blueprints__panel-line {
    width: 200px;
    margin: 8px 0 18px;
  }

  .ai-blueprints__panel h5 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .ai-blueprints__panel > ul:not(.ai-blueprints__outcomes) li,
  .ai-blueprints__fit,
  .ai-blueprints__outcomes li {
    font-size: 15px;
    line-height: 21px;
  }

  .ai-blueprints__outcomes-label {
    margin-top: 18px;
  }

  .ai-blueprints__cta-wrap {
    margin-top: 16px;
  }

  .ai-blueprints__cta.ai-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
    gap: 12px;
  }

  .ai-why-bb {
    padding: 40px 0 60px;
  }

  .ai-why-bb .ai-section-label {
    margin-bottom: 40px;
  }

  .ai-why-bb .ai-label-line {
    width: 24px;
  }

  .ai-why-bb__grid {
    margin-top: 0;
    margin-bottom: 0;
  }

  .ai-why-bb__grid > .cell:nth-child(n + 4) {
    margin-top: 0;
  }

  .ai-why-bb__grid > .cell {
    margin-bottom: 40px;
  }

  .ai-why-bb__grid > .cell:last-child {
    margin-bottom: 0;
  }

  .ai-faq .ai-section-label {
    margin-bottom: 40px;
  }

  .ai-faq .ai-label-line {
    width: 24px;
  }

  .ai-faq__item summary {
    font-size: 16px;
  }

  .ai-faq__item + .ai-faq__item {
    margin-top: 16px;
  }

  .ai-team-section {
    margin-top: 40px;
  }

  .ai-team-section .ai-section-label {
    margin-bottom: 40px;
  }

  .ai-team-section .ai-label-line {
    width: 24px;
  }

  .ai-process__blob {
    width: 200px;
    opacity: 0.4;
  }

  .ai-hero__underline {
    width: 282px;
    margin-top: 12px;
    margin-bottom: 28px;
  }

  .ai-services__custom {
    min-height: 0;
    padding: 24px 16px 28px;
  }

  .ai-services__grid {
    row-gap: 0;
  }

  .ai-service-card {
    width: 100%;
    aspect-ratio: 362 / 419;
    min-height: 0;
    height: auto;
    margin-bottom: 20px;
    padding: 24px;
  }

  .ai-services__grid > .cell:last-child .ai-service-card {
    margin-bottom: 0;
  }

  .ai-service-card::before {
    width: 300px;
    height: 300px;
  }

  .ai-service-card__head {
    margin-bottom: 10px;
  }

  .ai-service-card__num,
  .ai-service-card__cat {
    font-size: 16px;
    line-height: 20px;
  }

  .ai-service-card__line {
    margin-bottom: 30px;
  }

  .ai-service-card h4 {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 1.2;
  }

  .ai-service-card__lead {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 20px;
  }

  .ai-service-card__detail {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 22px;
  }

  .ai-service-card__tags {
    gap: 10px;
  }

  .ai-service-card__tags span {
    padding: 4px 10px;
    font-size: 12px;
    line-height: 22px;
  }

  .ai-services__custom-bg {
    top: -208px;
    left: -230px;
    width: 452px;
    height: 320px;
  }

  .ai-services__custom-num {
    margin-bottom: 10px;
  }

  .ai-services__custom-num span {
    font-size: 20px;
  }

  .ai-services__custom-line {
    width: 220px;
    margin-bottom: 16px;
  }

  .ai-services__custom h4 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .ai-services__custom p {
    font-size: 16px;
    line-height: 22px;
  }

  .ai-bottom-cta {
    padding: 60px 0;
  }

  .ai-bottom-cta::before {
    display: none;
  }
}
