/* Shared typography rules for consistent headings across pages */
:root {
  --site-heading-color: #0b1724;
}

/* Ensure headings render consistently even if other CSS is missing */
.site-h1,
h1.site-h1 {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--site-heading-color);
  margin: 0 0 .75rem 0;
}

.site-h2,
h2.site-h2,
.section-heading,
.section-title {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--site-heading-color);
  margin-top: 1.5rem;
  margin-bottom: .75rem;
}

.site-h3,
h3.site-h3,
.feature-title,
.pricing-title,
.interface-title {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--site-heading-color);
  margin: .25rem 0;
}

/* CTA and hero fallbacks */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #008a82 100%);
    color: white;
    text-align: center;
}

.cta-title {
    padding-top: 80px;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Small responsive adjustments to keep the visual rhythm when CSS is present */
@media (max-width: 767.98px) {
  .site-h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.5rem; }
}
