.callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  margin: 16px 0;
  background: var(--callout-bg);
  border: 1px solid var(--callout-border);
}
.callout-icon {
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  margin-top: 0;
}
.callout-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 28px;
}
/* Single line callouts - center the icon */
.callout:has(.callout-title:only-child) {
  align-items: center;
}
.callout:has(.callout-title:only-child) .callout-icon {
  margin-top: 0;
}
.callout-title {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 0;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.callout-title .title-divider {
  padding: 0 2px;
}
.callout-title .tag {
  margin-left: 0;
}
.callout-body {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 5px 0 0 0;
  line-height: 1.6;
}
.callout-body:first-child {
  margin-top: 0;
}
.callout-body:last-child {
  margin-bottom: 0;
}
.callout.success {
  --callout-bg: linear-gradient(135deg, rgba(52, 211, 153, 0.12) 0%, rgba(10, 15, 20, 0.85) 100%);
  --callout-border: rgba(52, 211, 153, 0.2);
  background: var(--callout-bg);
}
.callout.warning {
  --callout-bg: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(10, 15, 20, 0.85) 100%);
  --callout-border: rgba(251, 191, 36, 0.2);
  background: var(--callout-bg);
}
.callout.danger {
  --callout-bg: linear-gradient(135deg, rgba(248, 113, 113, 0.12) 0%, rgba(10, 15, 20, 0.85) 100%);
  --callout-border: rgba(248, 113, 113, 0.2);
  background: var(--callout-bg);
}
.callout.info {
  --callout-bg: linear-gradient(135deg, rgba(96, 165, 250, 0.12) 0%, rgba(10, 15, 20, 0.85) 100%);
  --callout-border: rgba(96, 165, 250, 0.2);
  background: var(--callout-bg);
}
.callout.purple {
  --callout-bg: linear-gradient(135deg, rgba(167, 139, 250, 0.12) 0%, rgba(10, 15, 20, 0.85) 100%);
  --callout-border: rgba(167, 139, 250, 0.2);
  background: var(--callout-bg);
}
.callout.tip {
  --callout-bg: linear-gradient(135deg, rgba(52, 211, 153, 0.12) 0%, rgba(10, 15, 20, 0.85) 100%);
  --callout-border: rgba(52, 211, 153, 0.2);
  background: var(--callout-bg);
}
.callout.tip .callout-title {
  color: var(--success);
}
.callout .check-list {
  margin: 6px 0 0 0;
}
.callout .check-list li {
  padding: 5px 0 5px 26px;
  font-size: 12px;
}
.callout .check-list li::before {
  width: 16px;
  height: 16px;
  top: 6px;
  font-size: 9px;
}
.step-callout {
  margin: 10px 0;
  padding: 12px 14px;
}
.hero-banner {
  position: relative;
  padding: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  overflow: hidden;
}
.hero-banner.ai-support-banner {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.08) 50%, rgba(236, 72, 153, 0.08) 100%);
  border: none;
  position: relative;
}
.hero-banner.ai-support-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(
    90deg,
    #6366f1 0%,
    #8b5cf6 16%,
    #a855f7 32%,
    #ec4899 48%,
    #f43f5e 64%,
    #f97316 80%,
    #6366f1 100%
  );
  background-size: 200% 100%;
  animation: bannerGlowSlide 8s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}
@keyframes bannerGlowSlide {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-banner-glow {
  position: absolute;
  top: -76px;
  right: -76px;
  width: 152px;
  height: 152px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(167, 139, 250, 0.15);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 12px;
}
.hero-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.hero-text {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 16px;
}
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent-primary);
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}
.btn-glow:hover {
  transform: translateY(-2px);
  background: #9b7df8;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}
/* Wave emoji animation */
.wave-emoji {
  display: inline-block;
  animation: wave 2.5s ease-in-out infinite;
  transform-origin: 70% 70%;
}
@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60%, 100% { transform: rotate(0deg); }
}
.hint-success {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: var(--radius-md);
  margin: 16px 0;
  font-size: 13px;
  color: var(--success);
}
.hint-success::before {
  content: '✓';
  font-weight: 700;
  font-size: 12px;
}
.callout-cta {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.callout-cta-icon {
  font-size: 16px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  margin-top: 4px;
}

.callout-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 36px;
  flex: 1;
  min-width: 0;
  padding-right: 10px;
}

.callout-cta-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.callout-cta-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.callout-cta-btn {
  padding: 10px 18px;
  background: var(--warning);
  color: #000;
  border: none;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.callout-cta-btn:hover {
  background: #e5a930;
  transform: translateY(-1px);
}

/* Callout simple list */
.callout-list {
    list-style: none;
    margin: 8px 0 0 0;
    padding: 0;
}

.callout-list li {
    position: relative;
    padding-left: 16px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 4px;
}

.callout-list li:last-child {
    margin-bottom: 0;
}

.callout-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

/* Support link - opens AI support overlay */
.support-link {
  color: var(--success);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.2s ease;
}
.support-link:hover {
  color: #4ade80;
  text-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

/* Info Card */
.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin: 16px 0;
}

.info-card-icon {
  font-size: 14px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
}

.info-card-content {
  flex: 1;
  min-width: 0;
}

.info-card-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.info-card-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.info-card.success-card {
  border-color: rgba(52, 211, 153, 0.25);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.06) 0%, var(--bg-elevated) 50%);
}

.info-card.success-card .info-card-icon {
  background: rgba(52, 211, 153, 0.15);
}

.info-card.success-card .info-card-title {
  color: var(--success);
}

.info-card.info-card-blue {
  border-color: rgba(96, 165, 250, 0.25);
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.06) 0%, var(--bg-elevated) 50%);
}

.info-card.info-card-blue .info-card-icon {
  background: rgba(96, 165, 250, 0.15);
}

.info-card.info-card-blue .info-card-title {
  color: #60a5fa;
}

.info-card.info-card-blue .info-card-text {
  color: #60a5fa;
}