.llm-cta {
  max-width: 1200px;
  margin: 3rem auto 3.5rem;
  padding: 0 1.25rem;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}
.llm-cta__container {
  position: relative;
  background: linear-gradient(135deg, #14151a 0%, #0f1014 100%);
  border-radius: 20px;
  padding: 1.5rem 1.5rem 1.25rem;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 50px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.03);
}
.llm-cta__container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(120,80,240,0.25), rgba(255,255,255,0.03));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.llm-cta__container::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(120,80,240,0.15), rgba(120,80,240,0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.llm-cta__accent {
  position: absolute;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.llm-cta__accent--check   { top: 16px; left: 22px; }
.llm-cta__accent--fire    { top: 14px; right: 24px; font-size: 24px; line-height: 1; }
.llm-cta__accent--sparkle  { bottom: 18px; right: 20px; }

.llm-cta__heading {
  position: relative;
  z-index: 1;
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.03em;
}
.llm-cta__subtext {
  position: relative;
  z-index: 1;
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.llm-cta__divider {
  position: relative;
  z-index: 1;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(192,132,252,0.3), transparent);
  margin: 0.65rem auto 1.1rem;
  border-radius: 2px;
}
.llm-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.llm-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.3s ease, background 0.25s ease;
  white-space: nowrap;
  line-height: 1;
}
.llm-cta__btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.llm-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.llm-cta__btn:active {
  transform: translateY(-1px) scale(0.97);
}
.llm-cta__btn--chatgpt:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 6px 24px rgba(255,255,255,0.05);
}
.llm-cta__btn--gemini:hover {
  border-color: rgba(66,133,244,0.5);
  background: rgba(66,133,244,0.08);
  box-shadow: 0 6px 24px rgba(66,133,244,0.12);
}
.llm-cta__btn--grok:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 6px 24px rgba(255,255,255,0.05);
}
.llm-cta__btn--perplexity:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 6px 24px rgba(255,255,255,0.05);
}
.llm-cta__btn--claude:hover {
  border-color: rgba(217,119,6,0.5);
  background: rgba(217,119,6,0.08);
  box-shadow: 0 6px 24px rgba(217,119,6,0.12);
}
.llm-cta__btn--google:hover {
  border-color: rgba(66,133,244,0.5);
  background: rgba(66,133,244,0.08);
  box-shadow: 0 6px 24px rgba(66,133,244,0.12);
}
@media (max-width: 640px) {
  .llm-cta { margin: 2rem auto 2.5rem; }
  .llm-cta__container { padding: 1rem 0.9rem 1rem; border-radius: 16px; }
  .llm-cta__heading { font-size: 1.15rem; }
  .llm-cta__subtext { font-size: 0.75rem; margin-bottom: 0.2rem; }
  .llm-cta__divider { margin: 0.5rem auto 0.85rem; }
  .llm-cta__actions { gap: 0.45rem; }
  .llm-cta__btn { padding: 0.45rem 0.85rem; font-size: 0.72rem; }
  .llm-cta__btn-icon { width: 16px; height: 16px; }
  .llm-cta__accent { display: none !important; }
}
