/* KratiaData Pro Landing Page Styles */

/* Pro Hero Section */
.pro-hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.pro-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(59, 130, 246, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(16, 185, 129, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

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

.pro-hero-section .hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pro-hero-section .hero-subtitle {
  font-size: 1.5rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
}

.stat-highlight {
  text-align: center;
}

.stat-highlight .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-highlight .stat-text {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.analytics-preview {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.preview-header h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.preview-badges {
  display: flex;
  gap: 0.75rem;
}

.preview-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.preview-chart {
  height: 300px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 1rem;
}

.preview-metrics {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.metric-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  display: block;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.metric-change {
  font-size: 0.875rem;
  font-weight: 600;
}

.metric-change.positive {
  color: #10b981;
}

.metric-change.negative {
  color: #ef4444;
}

/* AI Features Section */
.ai-features-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 8rem 0;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.ai-feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

.ai-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.ai-feature-card.sentiment-gradient::before {
  background: linear-gradient(90deg, #10b981, #059669);
}

.ai-feature-card.automation-gradient::before {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.ai-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.feature-icon.ai-gradient {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-icon.sentiment-gradient {
  background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.feature-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-metric {
  text-align: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
}

.feature-metric .metric-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.feature-metric .metric-text {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 500;
}

.demographics-showcase {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.demo-filters {
  background: #f9fafb;
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 2rem;
}

.demo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}

.filter-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-option {
  padding: 0.5rem 1rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-option:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}

.filter-option.active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

.demo-visualization {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.viz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.viz-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

.export-options {
  display: flex;
  gap: 0.75rem;
}

.export-btn {
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
}

.export-btn:hover {
  background: #3b82f6;
  color: white;
}

.demographic-chart {
  height: 400px;
  margin-bottom: 2rem;
}

.demographic-insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.insight-item {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.insight-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.insight-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.insight-change {
  font-size: 0.875rem;
  font-weight: 600;
  color: #10b981;
}

/* Mass Polling Section */
.mass-polling-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 8rem 0;
}

.mass-polling-section .section-title,
.mass-polling-section .section-subtitle {
  color: white;
}

.mass-polling-section .section-subtitle {
  color: #cbd5e1;
}

.polling-capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.capability-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  min-height: 350px;
}

.capability-card:hover {
  transform: translateY(-5px);
}

.capability-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.capability-icon {
  font-size: 2rem;
}

.capability-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.capability-content {
  color: #cbd5e1;
}

.capability-description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.capability-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.feature-check {
  color: #10b981;
  font-weight: bold;
  font-size: 1rem;
}

.live-results-demo {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.result-counter {
  text-align: center;
}

.counter-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #10b981;
  line-height: 1;
}

.counter-label {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.result-speed {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  color: #10b981;
  font-weight: 600;
}

.analytics-preview-mini {
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 0.75rem;
}

/* Data Export Section */
.data-export-section {
  background: #f8fafc;
  padding: 8rem 0;
}

.export-showcase {
  margin-top: 3rem;
}

.export-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.export-category {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.export-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.export-category.active {
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.category-description {
  color: #6b7280;
  line-height: 1.6;
}

.export-details {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.export-content {
  display: none;
}

.export-content.active {
  display: block;
}

.export-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.export-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.export-formats {
  display: flex;
  gap: 0.75rem;
}

.format-badge {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.export-chart-container {
  height: 300px;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 2rem;
  padding: 1rem;
}

.export-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.export-action-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.export-action-btn.primary {
  background: #3b82f6;
  color: white;
}

.export-action-btn.primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.export-action-btn.secondary {
  background: #e5e7eb;
  color: #374151;
}

.export-action-btn.secondary:hover {
  background: #d1d5db;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.state-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  font-weight: 600;
  color: #374151;
}

.state-responses {
  color: #3b82f6;
  font-size: 0.875rem;
}

.district-heatmap {
  height: 200px;
  background: linear-gradient(135deg, #e5e7eb 0%, #3b82f6 100%);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
}

.heatmap-legend {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 8px;
}

.legend-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  display: block;
}

.legend-gradient {
  width: 100px;
  height: 8px;
  background: linear-gradient(90deg, #e5e7eb, #3b82f6);
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.legend-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
}

/* Pro Pricing Section */
.pro-pricing-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 8rem 0;
}

.pro-pricing-section .section-title,
.pro-pricing-section .section-subtitle {
  color: white;
}

.pro-pricing-section .section-subtitle {
  color: #cbd5e1;
}

.pricing-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  border: 2px solid #e5e7eb;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 120px;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.popular-badge {
  position: absolute;
  top: -8px;
  right: 20px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 16px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header {
  flex-shrink: 0;
  width: 200px;
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  border-right: 1px solid #e5e7eb;
  padding-right: 1.5rem;
}

.plan-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 0 0.75rem 0;
}

.district-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.state-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.federal-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.all-polls-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.custom-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.plan-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.plan-price {
  margin-bottom: 0.5rem;
}

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

.price-period {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.yearly-discount {
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  background: #f0f9ff;
  border-radius: 6px;
  border: 1px solid #0ea5e9;
}

.discount-text {
  display: block;
  font-size: 0.75rem;
  color: #0369a1;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.discount-badge {
  display: inline-block;
  background: #0ea5e9;
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 8px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-description {
  color: #6b7280;
  line-height: 1.4;
  font-size: 0.8rem;
  display: none; /* Hide description in horizontal layout */
}

.pricing-features {
  flex: 1;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  align-content: center;
}

.pricing-features .feature-item {
  margin-bottom: 0;
  color: #374151;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  line-height: 1.3;
}

.pricing-features .feature-check {
  color: #10b981;
  font-weight: bold;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.pricing-footer {
  flex-shrink: 0;
  width: 140px;
  text-align: center;
}

.pricing-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-btn.primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}

.pricing-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.pricing-btn.secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.pricing-btn.secondary:hover {
  background: #e5e7eb;
  color: #1f2937;
}

/* Demo Section */
.demo-section {
  background: white;
  padding: 8rem 0;
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.demo-info {
  padding-right: 2rem;
}

.demo-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.demo-description {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.demo-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.demo-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
}

.demo-form {
  background: #f9fafb;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.demo-request-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.demo-request-form .form-group {
  margin-bottom: 0;
}

.demo-request-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.demo-request-form input,
.demo-request-form select,
.demo-request-form textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.demo-request-form input:focus,
.demo-request-form select:focus,
.demo-request-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.demo-request-form textarea {
  resize: vertical;
  min-height: 100px;
}

.demo-submit-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.demo-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-stats {
    gap: 2rem;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .demographics-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .demo-filters {
    position: static;
  }

  .demo-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

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

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .ai-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .polling-capabilities {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .export-categories {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
  }

  .pricing-grid .pricing-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .pricing-grid .pricing-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .pricing-grid .pricing-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .pricing-grid .pricing-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .pricing-grid .pricing-card:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
    grid-column-end: 3;
  }

  .feature-metrics {
    grid-template-columns: 1fr;
  }

  .demographic-insights {
    grid-template-columns: 1fr;
  }

  .export-actions {
    flex-direction: column;
  }

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

  .demo-info {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .pro-hero-section {
    padding: 6rem 0 4rem;
  }

  .pro-hero-section .hero-title {
    font-size: 2.5rem;
  }

  .pro-hero-section .hero-subtitle {
    font-size: 1.25rem;
  }

  .ai-feature-card,
  .capability-card {
    padding: 2rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 1rem;
  }

  .pricing-grid .pricing-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .pricing-grid .pricing-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .pricing-grid .pricing-card:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
  .pricing-grid .pricing-card:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }
  .pricing-grid .pricing-card:nth-child(5) {
    grid-column: 1;
    grid-row: 5;
  }

  .pricing-card.featured {
    transform: none;
  }

  .demo-form {
    padding: 2rem;
  }
}
