/* AI Dashboard Styling - Modern, clean interface for AI features */
/**
 * AI Features Stylesheet
 * 
 * Provides styling for all Trading AI features including:
 * - Dashboard layout
 * - Signal cards
 * - Watchlist display
 * - Strategy performance views
 * - Email notification signup
 */

/* ============================================================================
   AI Dashboard Layout
   ============================================================================ */

.ai-dashboard-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  min-height: calc(100vh - 200px);
}

/* ============================================================================
   AI Hero Section
   ============================================================================ */

.ai-hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
  margin-bottom: 2rem;
}

.ai-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.2),
    rgba(251, 191, 36, 0.15)
  );
  border: 1px solid rgba(251, 191, 36, 0.5);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.ai-badge::before {
  content: "🚀";
  font-size: 1rem;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
  }
}

.ai-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ai-hero-subtitle {
  font-size: 1.1rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.6;
}

/* ============================================================================
   AI Notification Signup Form
   ============================================================================ */

.ai-notify-section {
  margin-bottom: 3rem;
}

.ai-notify-card {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.ai-notify-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.ai-notify-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.ai-notify-card h2 {
  font-size: 1.5rem;
  color: #e2e8f0;
  margin: 0 0 0.5rem;
}

.ai-notify-card > p {
  color: #9ca3af;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.ai-notify-form {
  margin: 0;
}

.ai-input-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ai-input-group input {
  flex: 1;
  padding: 0.875rem 1rem;
  background: rgba(13, 17, 23, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #e2e8f0;
  font-size: 1rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ai-input-group input::placeholder {
  color: #6b7280;
}

.ai-input-group input:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.ai-notify-btn {
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
  min-width: 140px;
}

.ai-notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.ai-notify-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.ai-notify-privacy {
  color: #6b7280;
  font-size: 0.8rem;
  margin: 0;
}

.ai-notify-privacy i {
  margin-right: 0.25rem;
}

.ai-notify-message {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.ai-notify-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.ai-notify-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Discord CTA Section */
.ai-discord-cta {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(88, 101, 242, 0.15),
    rgba(88, 101, 242, 0.05)
  );
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 12px;
  animation: discordCtaFadeIn 0.5s ease-out;
}

@keyframes discordCtaFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.discord-cta-divider {
  display: none;
}

.discord-cta-text {
  color: #e2e8f0;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.discord-cta-subtext {
  color: #9ca3af;
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.discord-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  animation: discordBtnPulse 2s ease-in-out infinite;
}

@keyframes discordBtnPulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(88, 101, 242, 0.6);
  }
}

.discord-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5);
  color: #fff;
}

.discord-cta-btn i {
  font-size: 1.3rem;
}

/* ============================================================================
   AI Features Preview
   ============================================================================ */

.ai-features-preview {
  margin-bottom: 3rem;
}

.ai-features-preview .overview-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.section-title {
  text-align: center;
  font-size: 1.75rem;
  color: #e2e8f0;
  margin: 0 0 2rem;
}

.ai-feature-card {
  background: rgba(22, 27, 34, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  text-align: center;
  padding: 2rem 1.5rem !important;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start;
  min-height: 0;
  border-radius: 16px !important;
  margin-top: 16px;
}

.ai-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3) !important;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.15),
    rgba(99, 102, 241, 0.15)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon i {
  font-size: 1.25rem;
  color: #a78bfa;
}

.ai-feature-card h3 {
  color: #e2e8f0 !important;
  font-size: 1.1rem;
  margin: 0 0 0.75rem !important;
  text-transform: none !important;
}

.ai-feature-card p {
  color: #9ca3af;
  font-size: 0.9rem;
  margin: 0 !important;
  line-height: 1.5;
  flex-grow: 1;
}

/* ============================================================================
   How It Works Section
   ============================================================================ */

.ai-how-it-works {
  margin-bottom: 2rem;
}

.ai-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ai-step {
  text-align: center;
  padding: 1.5rem;
  max-width: 220px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.ai-step h3 {
  color: #e2e8f0;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.ai-step p {
  color: #9ca3af;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.ai-step-arrow {
  color: #4b5563;
  font-size: 1.25rem;
}

/* ============================================================================
   Original Dashboard Styles (for future use)
   ============================================================================ */

.overview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.overview-cards .card {
  background: rgba(22, 27, 34, 0.6);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.overview-cards .card h3 {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================================
   Signal Cards
   ============================================================================ */

.signal-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.signal-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.signal-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.signal-symbol {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.signal-type-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.signal-type-badge.buy {
  background: #d4edda;
  color: #155724;
}

.signal-type-badge.sell {
  background: #f8d7da;
  color: #721c24;
}

.signal-type-badge.hold {
  background: #fff3cd;
  color: #856404;
}

.signal-card-body {
  margin-bottom: 1rem;
}

.signal-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.signal-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-item label {
  display: block;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.signal-card-footer {
  display: flex;
  gap: 0.5rem;
}

/* ============================================================================
   Confidence Badges
   ============================================================================ */

.confidence-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.confidence-badge.confidence-high {
  background: #d4edda;
  color: #155724;
}

.confidence-badge.confidence-medium {
  background: #fff3cd;
  color: #856404;
}

.confidence-badge.confidence-low {
  background: #f8d7da;
  color: #721c24;
}

/* ============================================================================
   Watchlist Table
   ============================================================================ */

.watchlist-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.watchlist-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.watchlist-filters select {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

.watchlist-table {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.watchlist-table thead {
  background: #f8f9fa;
}

.watchlist-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #495057;
}

.watchlist-table td {
  padding: 1rem;
  border-top: 1px solid #dee2e6;
}

.watchlist-table tbody tr:hover {
  background: #f8f9fa;
}

/* ============================================================================
   Strategy Badges
   ============================================================================ */

.strategy-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  background: #e9ecef;
  color: #495057;
}

/* ============================================================================
   Signal Detail Page
   ============================================================================ */

.signal-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.signal-overview {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.signal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signal-details dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 2rem;
}

.signal-details dt {
  font-weight: 600;
  color: #495057;
}

.signal-details dd {
  margin: 0;
  color: #212529;
}

/* ============================================================================
   Buttons
   ============================================================================ */

.btn-primary,
.btn-secondary,
.btn-sm {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-secondary {
  background: #6c757d;
  color: #fff;
}

.btn-secondary:hover {
  background: #545b62;
}

.btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
}

/* ============================================================================
   Responsive Design
   ============================================================================ */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .ai-dashboard-container {
    max-width: 100%;
    padding: 1.5rem;
  }

  .ai-notify-card {
    max-width: 100%;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .ai-dashboard-container {
    padding: 1rem;
  }

  .ai-hero {
    padding: 1.5rem 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .ai-hero-title {
    font-size: 1.75rem;
  }

  .ai-hero-subtitle {
    font-size: 1rem;
  }

  .ai-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  .ai-notify-card {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  .ai-notify-icon {
    width: 50px;
    height: 50px;
  }

  .ai-notify-card h2 {
    font-size: 1.25rem;
  }

  .ai-input-group {
    flex-direction: column;
    gap: 0.625rem;
  }

  .ai-input-group input {
    padding: 0.875rem 1rem;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  .ai-notify-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .ai-steps {
    flex-direction: column;
    gap: 0.5rem;
  }

  .ai-step {
    padding: 1rem;
    max-width: 100%;
  }

  .ai-step-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  .overview-cards {
    grid-template-columns: 1fr;
  }

  .signal-prices {
    grid-template-columns: 1fr;
  }

  .signal-card-footer {
    flex-direction: column;
  }

  .watchlist-filters {
    flex-direction: column;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .ai-dashboard-container {
    padding: 0.75rem;
  }

  .ai-hero {
    padding: 1rem 0.25rem 0.75rem;
    margin-bottom: 1rem;
  }

  .ai-hero-title {
    font-size: 1.5rem;
  }

  .ai-hero-subtitle {
    font-size: 0.9rem;
  }

  .ai-notify-card {
    padding: 1.25rem 1rem;
  }

  .ai-notify-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 1rem;
  }

  .ai-notify-icon i {
    font-size: 1.25rem;
  }

  .ai-notify-card h2 {
    font-size: 1.15rem;
  }

  .ai-notify-card > p {
    font-size: 0.875rem;
  }

  .ai-input-group input {
    padding: 0.75rem;
  }

  .ai-notify-btn {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .ai-notify-privacy {
    font-size: 0.7rem;
  }

  .ai-feature-card {
    padding: 1.25rem 1rem !important;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .ai-feature-card h3 {
    font-size: 1rem;
  }

  .ai-feature-card p {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .ai-step h3 {
    font-size: 1rem;
  }

  .ai-step p {
    font-size: 0.8rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Touch devices - larger tap targets */
@media (hover: none) and (pointer: coarse) {
  .ai-input-group input {
    min-height: 48px;
  }

  .ai-notify-btn {
    min-height: 48px;
  }
}

/* ============================================================================
   Signup Tab Switcher (Email / Phone)
   ============================================================================ */

.ai-signup-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.25rem;
  background: rgba(13, 17, 23, 0.6);
  border-radius: 10px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-tab {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.ai-tab:hover {
  color: #e2e8f0;
}

.ai-tab.active {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

.ai-tab i {
  font-size: 0.85rem;
}

.ai-tab-content {
  animation: tabFadeIn 0.3s ease-out;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Phone Step 2 info */
.phone-step2-info {
  color: #a78bfa;
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-step2-info i {
  font-size: 1rem;
}

/* Verify button accent */
.ai-verify-btn {
  background: linear-gradient(135deg, #10b981, #059669) !important;
}

.ai-verify-btn:hover {
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4) !important;
}

/* ============================================================================
   PDF Download CTA (shown after signup)
   ============================================================================ */

.ai-pdf-cta {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.12),
    rgba(99, 102, 241, 0.06)
  );
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  animation: discordCtaFadeIn 0.5s ease-out;
}

.pdf-cta-icon {
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.pdf-cta-icon i {
  font-size: 1.3rem;
  color: #ef4444;
}

.pdf-cta-text {
  color: #e2e8f0;
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.pdf-cta-sub {
  color: #9ca3af;
  font-size: 0.85rem;
  margin: 0 0 1rem;
}

.pdf-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pdf-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
  color: #fff;
}

/* ============================================================================
   AI OnePager Section (always visible)
   ============================================================================ */

.ai-onepager-section {
  margin-bottom: 3rem;
}

.ai-onepager-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  transition: border-color 0.3s ease;
}

.ai-onepager-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
}

.onepager-preview {
  flex-shrink: 0;
  width: 160px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.onepager-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.onepager-info h2 {
  font-size: 1.3rem;
  color: #e2e8f0;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.onepager-info h2 i {
  color: #8b5cf6;
}

.onepager-info p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pdf-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
  color: #fff;
}

@media (max-width: 640px) {
  .ai-onepager-card {
    flex-direction: column;
    text-align: center;
  }

  .onepager-preview {
    width: 120px;
    height: 150px;
  }

  .onepager-info h2 {
    justify-content: center;
  }
}
