/* ── ai-assistant page overrides ── */

header .header-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  text-decoration: none;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.industry-card {
  padding: 1.75rem 1.5rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), box-shadow 0.2s, border-color 0.2s;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.07);
  border-color: #cbd5e1;
}
.industry-icon {
  color: #2563eb;
  margin-bottom: 0.25rem;
}
.industry-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.industry-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ── results section ── */
.assistant-results {
  background: #0f172a;
  border-top: none;
  padding: 5rem 0;
}
.assistant-results h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}
.assistant-results .services-intro {
  color: #64748b;
  margin-bottom: 3rem;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.result-stat {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.result-number {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.result-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #60a5fa;
  line-height: 1.4;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0.25rem;
}
.result-stat p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}
.results-source {
  text-align: center;
  font-size: 0.78rem;
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── assistant-what section ── */
.assistant-what {
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

/* ── assistant-steps section ── */
.assistant-steps {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.assistant-steps .container > h3 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.assistant-steps-list {
  max-width: 640px;
  margin: 0 auto;
}

/* ── assistant-also (link back to ecom) ── */
.assistant-also {
  text-align: center;
}
.assistant-also .cta {
  display: inline-block;
  background: transparent;
  color: #2563eb;
  border: 1.5px solid #2563eb;
  padding: 0.7rem 1.5rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.assistant-also .cta:hover {
  background: #2563eb;
  color: #fff;
}
