/* AI solution detail pages */
.ai-sol-page {
  background: #fff;
  color: #334155;
  line-height: 1.75;
}

.ai-sol-hero {
  padding: 70px 0 50px;
  text-align: center;
  background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%);
}

.ai-sol-hero__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aventiq-blue, #0178B7);
  margin-bottom: 14px;
}

.ai-sol-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ai-sol-hero__lead {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: clamp(16px, 2.5vw, 19px);
  color: #475569;
}

.ai-sol-section {
  padding: 56px 0;
}

.ai-sol-section--light {
  background: #f8fafc;
}

.ai-sol-section h2 {
  font-size: clamp(24px, 4vw, 32px);
  color: #1a1a2e;
  margin-bottom: 18px;
}

.ai-sol-section h3 {
  font-size: 20px;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.ai-sol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.ai-sol-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-sol-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(1, 120, 183, 0.12);
}

.ai-sol-card p,
.ai-sol-section p {
  font-size: 16px;
  margin-bottom: 14px;
  color: #475569;
}

.ai-sol-list {
  padding-left: 20px;
  margin: 0;
}

.ai-sol-list li {
  margin-bottom: 10px;
  color: #475569;
}

.ai-sol-highlight {
  background: #e8f4fc;
  border-left: 4px solid var(--aventiq-blue, #0178B7);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-weight: 600;
  color: #0f4c75;
}

.ai-sol-steps {
  counter-reset: ai-step;
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.ai-sol-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #e2e8f0;
}

.ai-sol-step::before {
  counter-increment: ai-step;
  content: counter(ai-step);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--aventiq-blue, #0178B7);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-sol-cta {
  text-align: center;
  padding: 64px 20px 80px;
  background: linear-gradient(135deg, #0178B7 0%, #015f92 100%);
  color: #fff;
}

.ai-sol-cta h2 {
  color: #fff;
  margin-bottom: 14px;
}

.ai-sol-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

.ai-sol-cta .thm-btn {
  background: #fff;
  color: var(--aventiq-blue, #0178B7);
}

.ai-sol-cta .thm-btn:hover {
  background: #f0f8ff;
}

.ai-sol-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .ai-sol-two-col {
    grid-template-columns: 1fr;
  }
}
