/* Results Page Styles for Sternberg Injury Law Firm */

/* Stats Section Heading Styles */
.stats-container h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.stats-container p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Results Hero Section */
.results-hero {
  background: linear-gradient(135deg, #ed533d 0%, #c43a28 100%);
  color: white;
  padding: 120px 20px 80px 20px;
  text-align: center;
}

.results-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.results-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Mobile line breaks - hide on desktop */
.mobile-break {
  display: inline;
}

@media (min-width: 769px) {
  .mobile-break {
    display: none;
  }
}

/* Results Container */
.results-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
}

.results-intro {
  text-align: center;
  margin-bottom: 50px;
}

.results-intro h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.results-intro p {
  font-size: 1.1rem;
  color: #666;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Result Card */
.result-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #ed533d;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.result-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.result-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ed533d;
  line-height: 1;
}

.result-type {
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
}

.result-details {
  margin-top: 20px;
}

.result-details h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

.result-details p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 10px;
}

.result-details .detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.result-details .detail-item strong {
  color: #333;
  margin-right: 8px;
  min-width: 100px;
}

.result-details .detail-item span {
  color: #666;
}

/* Stats Section */
.stats-section {
  background: #f8f9fa;
  padding: 60px 20px;
  margin-top: 60px;
}

.stats-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  padding: 30px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: #ed533d;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #3884cc 0%, #2a6ba3 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: #ed533d;
  color: white;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #c43a28;
  transform: scale(1.05);
  color: white;
  text-decoration: none;
}

/* Disclaimer */
.disclaimer {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin: 40px 20px;
  border-radius: 4px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer p {
  color: #856404;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .results-hero h1 {
    font-size: 2rem;
  }

  .results-hero p {
    font-size: 1rem;
  }

  .results-intro h2 {
    font-size: 2rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .result-amount {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .results-hero {
    padding: 100px 15px 60px 15px;
  }

  .results-container {
    padding: 40px 15px;
  }

  .result-card {
    padding: 20px;
  }

  .result-amount {
    font-size: 1.75rem;
  }
}
