/* Subtle text shadow for improved legibility on hero text */
/* Inspired by premium corporate design (Apple, OpenAI, Tesla, Stripe, JP Morgan) */

/* Apply to hero headings */
.page-section--hero-with-bg-cta__heading h1,
.page-section--citadel-hero h1 {
  text-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.12),
    0 0 1px rgba(0, 0, 0, 0.08);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-section--hero-with-bg-cta__heading h1,
  .page-section--citadel-hero h1 {
    text-shadow: 
      0 1px 2px rgba(0, 0, 0, 0.15),
      0 0 1px rgba(0, 0, 0, 0.1);
  }
}