
/* AI Content Workflow Pro - Preview (scoped) */

.aicwp-preview,
.aicwp-preview * {
  box-sizing: border-box;
}

.aicwp-preview {
  padding: 3rem 1.25rem;
  color: #e2e8f0;
  background: radial-gradient(1200px 600px at 50% 0%, rgba(96,165,250,0.18), transparent 60%),
              radial-gradient(900px 500px at 20% 10%, rgba(139,92,246,0.16), transparent 55%),
              linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.aicwp-container {
  max-width: 1400px;
  margin: 0 auto;
}

.aicwp-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2.25rem 1.25rem;
  background: rgba(30, 41, 59, 0.7);
  border-radius: 22px;
  border: 1px solid rgba(100, 116, 139, 0.28);
  backdrop-filter: blur(10px);
}

.aicwp-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin: 0 0 .75rem 0;
  line-height: 1.1;
  background: linear-gradient(90deg, #60a5fa, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aicwp-title i { margin-right: .5rem; }

.aicwp-tagline {
  font-size: 1.15rem;
  color: #94a3b8;
  margin: 0 0 .35rem 0;
}

.aicwp-subtitle {
  margin: 0;
  color: rgba(226, 232, 240, 0.9);
}

.aicwp-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 1.75rem auto 0;
}

@media (max-width: 860px) {
  .aicwp-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.aicwp-stat {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(100, 116, 139, 0.22);
  border-radius: 14px;
  padding: 1rem .9rem;
}

.aicwp-stat-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1.1;
}

.aicwp-stat-label {
  margin-top: .25rem;
  color: #94a3b8;
  font-size: .95rem;
}

.aicwp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.aicwp-module {
  position: relative;
  overflow: hidden;
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid rgba(100, 116, 139, 0.28);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.1rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.aicwp-module::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #8b5cf6);
}

.aicwp-module:hover {
  transform: translateY(-4px);
  border-color: rgba(96,165,250,0.55);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.35);
}

.aicwp-module h3 {
  margin: 0 0 .9rem 0;
  color: #60a5fa;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.aicwp-module ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aicwp-module li {
  padding: .5rem 0;
  border-bottom: 1px solid rgba(100, 116, 139, 0.14);
  color: rgba(226, 232, 240, 0.95);
  display: flex;
  gap: .5rem;
}

.aicwp-module li::before {
  content: "✓";
  color: #10b981;
  font-weight: 800;
  flex: 0 0 auto;
}

.aicwp-pipeline {
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(100, 116, 139, 0.28);
  border-radius: 18px;
  padding: 2rem 1.5rem;
}

.aicwp-section-title {
  margin: 0 0 1.25rem 0;
  text-align: center;
  color: #60a5fa;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.aicwp-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .9rem;
  max-width: 1100px;
  margin: 1.2rem auto 1.5rem;
}

@media (max-width: 980px) {
  .aicwp-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .aicwp-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.aicwp-step {
  border: 1px solid rgba(100, 116, 139, 0.26);
  background: rgba(15, 23, 42, 0.85);
  border-radius: 14px;
  padding: 1rem .9rem;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  display: grid;
  place-items: center;
  gap: .45rem;
  color: #e2e8f0;
}

.aicwp-step:hover {
  transform: translateY(-2px);
  border-color: rgba(96,165,250,0.55);
  background: rgba(30, 64, 175, 0.16);
}

.aicwp-step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
}

.aicwp-step-name {
  font-size: .92rem;
  color: rgba(226, 232, 240, 0.95);
}

.aicwp-tech {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .aicwp-tech { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .aicwp-tech { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.aicwp-tech-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(100, 116, 139, 0.22);
  border-radius: 14px;
  padding: .85rem .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  color: rgba(226, 232, 240, 0.95);
}

.aicwp-tech-card i {
  font-size: 1.2rem;
  color: rgba(226, 232, 240, 0.85);
}

.aicwp-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.aicwp-demo-btn {
  border: 0;
  border-radius: 14px;
  padding: 1rem 1.35rem;
  min-width: 210px;
  cursor: pointer;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  box-shadow: 0 12px 30px rgba(96,165,250,0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.aicwp-demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(139,92,246,0.22);
}
