/* Landing Page Styles */

/* Hero Section */
.landing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}


.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #a1a1aa;
  margin: 0;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-hero {
  padding: 10px 12px !important;
  width: fit-content;
  height: auto !important;
}

.cta-subtext {
  font-size: 0.875rem;
  color: #717171;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-benefit {
  color: #717171;
  font-size: 1rem;
  line-height: 0.8;
}

.cta-benefit-mobile {
  display: none;
}

@media (max-width: 768px) {
  .cta-benefit-desktop {
    display: none;
  }
  
  .cta-benefit-mobile {
    display: inline;
  }
}

/* Hero Visual Cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.visual-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.visual-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.card-1 {
  margin-left: 2rem;
}

.card-2 {
  margin-right: 1.5rem;
}

.card-4 {
  margin-left: 2rem;
}

.merged-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.questions-section,
.topics-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-label {
  font-size: 0.75rem;
  color: #71717a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #ffffff;
}

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

.card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.card-dots span:nth-child(1) {
  background: #ef4444;
}

.card-dots span:nth-child(2) {
  background: #f59e0b;
}

.card-dots span:nth-child(3) {
  background: #10b981;
}

.card-icon {
  font-size: 1.5rem;
}

.card-content {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-label {
  font-size: 0.875rem;
  color: #a1a1aa;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-item {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #e4e4e7;
  font-size: 0.875rem;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 500;
}

/* AI Reply Demo Card */
.ai-demo-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-comment {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid rgba(59, 130, 246, 0.5);
}

.comment-author {
  font-size: 0.7rem;
  color: #60a5fa;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.comment-text {
  font-size: 0.8rem;
  color: #e4e4e7;
  line-height: 1.4;
}

.demo-generate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.demo-generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.demo-generate-btn:active {
  transform: translateY(0);
}

.demo-generate-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.demo-generate-btn.loading .btn-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.btn-icon {
  font-size: 0.9rem;
}

.btn-text {
  font-size: 0.8rem;
}

.demo-reply {
  padding: 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  border-left: 3px solid rgba(34, 197, 94, 0.6);
  animation: slideIn 0.4s ease-out;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.reply-text {
  font-size: 0.8rem;
  color: #e4e4e7;
  line-height: 1.4;
  white-space: pre-wrap;
  margin: 0;
}

.demo-post-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #e4e4e7;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.demo-post-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.demo-post-btn:active {
  transform: translateY(0);
}

.demo-post-btn.posting {
  opacity: 0.7;
  cursor: wait;
}

.demo-post-btn.posted {
  cursor: default;
}

.demo-post-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.post-text {
  font-size: 0.75rem;
}

/* Post Modal */
.post-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.post-modal.active {
  display: flex;
}

.post-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.post-modal-content {
  position: relative;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  max-width: 420px;
  width: 90%;
  padding: 2.5rem 2rem;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(59, 130, 246, 0.1),
    0 0 60px rgba(59, 130, 246, 0.15);
  animation: slideUpModal 0.4s ease;
  z-index: 2001;
  text-align: center;
  backdrop-filter: blur(10px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.post-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--sub);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: all 0.2s ease;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-modal-close:hover {
  color: var(--text);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.post-modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(96, 165, 250, 0.3));
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.post-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.post-modal-text {
  font-size: 0.95rem;
  color: var(--sub);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.post-modal-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
}


@keyframes blink {
  0%, 50% {
    border-color: rgba(34, 197, 94, 0.6);
  }
  51%, 100% {
    border-color: transparent;
  }
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #a1a1aa;
  margin: 0;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(59, 130, 246, 0.6);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #a1a1aa;
  margin: 0;
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.step-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #a1a1aa;
  margin: 0;
}

.step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  margin-top: 30px;
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8b5cf6;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  position: relative;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
  background: rgba(59, 130, 246, 0.08);
  border: 2px solid rgba(59, 130, 246, 0.4);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: #a1a1aa;
  font-weight: 500;
}

.pricing-description {
  font-size: 0.9375rem;
  color: #a1a1aa;
  margin: 0;
  line-height: 1.5;
}

.pricing-limits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  position: relative;
}

.limit-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fbbf24;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.limit-note {
  text-align: center;
  font-size: 0.8125rem;
  color: #a1a1aa;
  margin-top: 0.5rem;
  font-style: italic;
  line-height: 1.4;
}

.limit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.limit-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.limit-label {
  font-size: 0.875rem;
  color: #a1a1aa;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #e4e4e7;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card-featured .pricing-features li::before {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  box-sizing: border-box;
}

.btn-pricing:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-pricing-featured {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-pricing-featured:hover {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: #71717a;
  margin: 3rem auto 0;
  max-width: 600px;
  line-height: 1.6;
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.trust-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.trust-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.trust-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #a1a1aa;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #a1a1aa;
  margin: 0;
}

.btn-large {
  padding: 1.25rem 2.5rem !important;
  font-size: 1.125rem;
  height: auto !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .landing-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .card-1,
  .card-2,
  .card-4 {
    margin-left: 0;
    margin-right: 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-container {
    flex-wrap: wrap;
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .landing-hero {
    padding: 2.5rem 0 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-section {
    padding: 3rem 0;
  }

  .features-showcase-section {
    padding: 3rem 0;
  }

  .reply-generation-section {
    padding: 3rem 0rem;
  }

  .reply-generation-content {
    margin-top: 2rem;
  }

  .pricing-section {
    padding: 3rem 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .pricing-card-featured {
    transform: scale(1);
  }

  .pricing-card-featured:hover {
    transform: translateY(-8px);
  }

  .how-it-works {
    padding: 3rem 0;
  }

  .steps-container {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    margin-top: 2rem;
  }

  .step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
  }

  .step-content {
    flex: 1;
  }

  .step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .step-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    text-align: left;
  }

  .step-connector {
    display: none;
  }

  .trust-section {
    padding: 2.5rem 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

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

  .cta-title {
    font-size: 2rem;
  }
}

/* Features Showcase Section */
.features-showcase-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.03) 50%, transparent 100%);
}

.showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.showcase-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.15);
}

.showcase-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.showcase-card-icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.showcase-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}

.showcase-subtitle {
  font-size: 0.875rem;
  color: #a1a1aa;
  margin: 0;
}

/* Sentiment Showcase */
.sentiment-showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sentiment-stat-demo {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sentiment-stat-demo.positive {
  border-left: 3px solid #22c55e;
}

.sentiment-stat-demo.neutral {
  border-left: 3px solid #9ca3af;
}

.sentiment-stat-demo.negative {
  border-left: 3px solid #ef4444;
}

.sentiment-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.sentiment-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sentiment-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.sentiment-label {
  font-size: 0.875rem;
  color: #a1a1aa;
}

.sentiment-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.25rem;
}

.sentiment-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease;
}

/* Questions Showcase */
.question-stats-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.question-stat-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.question-stat-item.highlight {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border-color: rgba(34, 197, 94, 0.3);
}

.question-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.question-stat-label {
  font-size: 0.75rem;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.question-preview {
  margin-top: 1rem;
}

.question-item-preview {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 3px solid #f59e0b;
}

.question-preview-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.question-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #60a5fa;
}

.question-priority {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.question-priority.high {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.question-preview-text {
  font-size: 0.875rem;
  color: #e4e4e7;
  line-height: 1.5;
  font-style: italic;
}

/* Health Metrics Showcase */
.health-metrics-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.health-metric-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.health-metric-item.highlight {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border-color: rgba(34, 197, 94, 0.3);
}

.health-metric-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.health-metric-content {
  flex: 1;
}

.health-metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.health-metric-label {
  font-size: 0.875rem;
  color: #a1a1aa;
}

/* Topics Showcase */
.topics-list-showcase {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.topic-item-showcase {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.topic-item-showcase:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.topic-rank {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f59e0b;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 8px;
  flex-shrink: 0;
}

.topic-info-showcase {
  flex: 1;
}

.topic-name-showcase {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.topic-stats-showcase {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.topic-count {
  color: #a1a1aa;
}

.topic-percentage {
  color: #60a5fa;
  font-weight: 600;
}

/* Charts Showcase */
.charts-row {
  grid-template-columns: 1fr 1fr;
}

.chart-showcase {
  min-height: 350px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.chart-container-demo {
  position: relative;
  height: 250px;
  margin-top: 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.chart-container-demo canvas {
  max-width: 100% !important;
  height: auto !important;
}

/* Responsive for Showcase */
@media (max-width: 1024px) {
  .showcase-row {
    grid-template-columns: 1fr;
  }

  .charts-row {
    grid-template-columns: 1fr;
  }

  .question-stats-showcase,
  .health-metrics-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-showcase-section {
    padding: 4rem 0;
  }

  .showcase-container {
    padding: 0 0rem;
  }

  .showcase-card {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .question-stats-showcase,
  .health-metrics-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-card-header h3 {
    font-size: 1.25rem;
  }

  .charts-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .chart-showcase {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .chart-container-demo {
    height: 200px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}

/* Showcase CTA Button */
.showcase-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2rem;
}

.showcase-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn-showcase-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border: 2px solid rgba(59, 130, 246, 0.4);
  border-radius: 14px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset,
              0 0 40px rgba(59, 130, 246, 0.1);
  animation: pulse-glow 3s ease-in-out infinite;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-showcase-cta:hover .btn-shine {
  left: 100%;
}

.btn-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

.btn-showcase-cta:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 48px rgba(59, 130, 246, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.2) inset,
              0 0 60px rgba(59, 130, 246, 0.2);
}

.btn-showcase-cta:active {
  transform: translateY(-2px) scale(1);
}

.btn-showcase-cta i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.btn-showcase-cta i:first-child {
  animation: sparkle 2s ease-in-out infinite;
}

.btn-showcase-cta:hover i:last-child {
  transform: translateX(6px);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 0 40px rgba(59, 130, 246, 0.1);
  }
  50% {
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 0 50px rgba(59, 130, 246, 0.15);
  }
}

@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1) rotate(180deg);
  }
}

.cta-hint {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 500;
  text-align: center;
  animation: fade-in-up 0.6s ease-out 0.3s both;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


