#ai-section {
  position: relative;
  overflow: hidden;
}
.ai-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(79,195,161,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(200,169,110,0.06) 0%, transparent 70%);
}

.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) { .ai-layout { grid-template-columns: 1fr; gap: 60px; } }

.ai-features { display: flex; flex-direction: column; gap: 32px; }

.ai-feature {
  display: flex;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}
.ai-feature:hover { border-color: rgba(200,169,110,0.3); background: var(--card); }

.ai-feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.ai-feature-text h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.ai-feature-text p { font-size: 13px; color: var(--muted); line-height: 1.6; }
