/* CRM Page Specific Styles */

/* Hero customizations */
.hero-subheading-large {
  font-size: 28px;
}

/* Problem Statement Section */
.problem-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

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

.problem-eyebrow {
  font-size: 24px;
  color: #cc0000;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-headline {
  font-size: 20px;
  color: #555555;
  font-weight: 500;
  margin-bottom: 32px;
}

.problem-main-heading {
  font-size: 40px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
}

.problem-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Content Section (Text-heavy sections) */
.content-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
}

.content-heading {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.content-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 24px;
}

.content-text:last-child {
  margin-bottom: 0;
}

/* Stats Section */
.stats-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-heading {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.stat-title {
  font-size: 22px;
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 16px;
}

.stat-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* Checklist Section */
.checklist-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.checklist-container {
  max-width: 900px;
  margin: 0 auto;
}

.checklist-heading {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 48px;
}

.checklist-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
}

.checklist-item {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
}

.checklist-item:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: bold;
  font-size: 24px;
}

/* Final CTA Section */
.final-cta-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-heading {
  font-size: 36px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
}

.final-cta-text {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 32px;
}

.final-cta-button {
  display: inline-block;
  padding: 16px 32px;
  background-color: #0066cc;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.final-cta-button:hover {
  background-color: #0052a3;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .problem-section,
  .content-section,
  .stats-section,
  .checklist-section,
  .final-cta-section {
    padding: 60px 20px;
  }

  .problem-eyebrow {
    font-size: 20px;
  }

  .problem-headline {
    font-size: 18px;
  }

  .problem-main-heading,
  .content-heading,
  .stats-heading,
  .checklist-heading {
    font-size: 32px;
  }

  .final-cta-heading {
    font-size: 28px;
  }

  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card,
  .stat-card {
    padding: 30px 20px;
  }

  .content-text,
  .final-cta-text {
    font-size: 16px;
  }

  .checklist-item {
    font-size: 16px;
  }
}
