.breadcrumb { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1rem; }
 .breadcrumb a { color: rgba(255,255,255,0.7); }
 .breadcrumb a:hover { color: var(--white); }
 .breadcrumb span { margin: 0 8px; color: rgba(255,255,255,0.5); }
 .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 2rem; padding: 14px; background: rgba(255,255,255,0.1); border-radius: 12px; backdrop-filter: blur(10px); }
 .hero-stat { text-align: center; }
 .hero-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 2.5rem; }
 .hero-feature-item { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 14px; text-align: center; transition: all 0.3s ease; }
 .hero-feature-item:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
 .hero-feature-item i { font-size: 2rem; color: var(--accent-gold); margin-bottom: 12px; }
 .hero-feature-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
 .hero-feature-item p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin: 0; }
 .hero-stat .icon { width: 48px; height: 48px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; }
 .hero-stat .icon i { font-size: 1.25rem; color: var(--white); }
 .hero-stat .value { font-size: 1.25rem; font-weight: 700; color: var(--white); }
 .hero-stat .label { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
 .benefit-card { text-align: center; padding: 14px 24px; }
 .benefit-icon i { font-size: 1.5rem; color: var(--success-green); }
 .benefit-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
 .benefit-card p { font-size: 0.875rem; color: var(--text-medium); margin-bottom: 0; }
 .process-steps {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 gap: 1.5rem;
 justify-content: center;
 max-width: 100%;
 }
 .process-step {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 gap: 1rem;
 flex: 1;
 min-width: 200px;
 max-width: 260px;
 background: var(--white);
 border: 1px solid var(--border-gray);
 border-radius: 12px;
 padding: 1rem;
 margin-bottom: 0;
 }
 .process-step .step-number {
 flex-shrink: 0;
 width: 56px;
 height: 56px;
 background: var(--primary-blue);
 color: var(--white);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-weight: 700;
 font-size: 1.5rem;
 margin: 0 auto;
 }
 .process-step h3, .process-step h4 {
 color: var(--primary-navy);
 margin-bottom: 0.5rem;
 font-size: 1.125rem;
 }
 .process-step p {
 font-size: 0.9375rem;
 color: var(--text-medium);
 line-height: 1.6;
 margin: 0;
 }
 
 .process-step { transition: all 0.35s ease; cursor: default; }
 .process-step:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); border-color: var(--primary-blue); }
 .process-step .step-number { border-radius: 14px !important; background: linear-gradient(135deg, var(--primary-blue) 0%, #0068b8 100%) !important; font-size: 1.3rem !important; box-shadow: 0 4px 16px rgba(0,82,155,0.25) !important; animation: stepPulse 3s ease-in-out infinite; }
 .process-step:hover .step-number { background: linear-gradient(135deg, var(--accent-gold) 0%, #d4a83a 100%) !important; color: var(--primary-navy) !important; transform: scale(1.12) rotate(-3deg); box-shadow: 0 8px 24px rgba(201,162,39,0.35) !important; }
 .process-step h3 { transition: color 0.3s ease; }
 .process-step:hover h3 { color: var(--primary-blue); }
 .process-step::after { content: ''; position: absolute; top: 28px; left: 50%; transform: translateX(-50%) scale(0); width: 8px; height: 8px; border-radius: 50%; background: var(--accent-gold); z-index: 3; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
 .process-step:hover::after { transform: translateX(-50%) scale(1); }
 @keyframes stepPulse { 0%,100% { box-shadow: 0 4px 16px rgba(0,82,155,0.25); } 50% { box-shadow: 0 4px 24px rgba(0,82,155,0.45), 0 0 0 6px rgba(0,82,155,0.08); } }
 .process-steps:hover .step-number { animation-play-state: paused; }
.calc-box {
 background: var(--primary-light);
 border-left: 4px solid var(--primary-blue);
 border-radius: 8px;
 padding: 1rem;
 margin-top: 1.5rem;
 }
 .calc-box p { margin: 0; line-height: 1.7; }
 .image-caption {
 text-align: center;
 font-size: 0.875rem;
 color: var(--text-light);
 margin-top: 0.5rem;
 font-style: italic;
 }
 @media (max-width: 768px) {
 .hero-stats { grid-template-columns: repeat(2, 1fr); }
 }
 @media (max-width: 992px) {
 .process-steps {
 flex-direction: row;
 }
 .process-step {
 min-width: 160px;
 max-width: 200px;
 padding: 1.25rem;
 }
 }
 @media (max-width: 768px) {
 .process-steps {
 flex-direction: column;
 align-items: center;
 }
 .process-step {
 max-width: 100%;
 width: 100%;
 min-width: auto;
 }
 .hero-features { grid-template-columns: 1fr; gap: 16px; }
 .hero-feature-item { padding: 14px; }
 }

/* Vertical spacing for feature cards on HAB response page */
.feature-grid {
  display: grid !important;
  gap: 1.5rem !important;
}


/* =====================================================================
   Monitoring & Early Warning — box-free, nicely padded prose.
   No card backgrounds/borders; entries read as a clean document with
   an accented heading and a generously spaced paragraph, divided by a
   hairline rule rather than a visible container.
   ===================================================================== */
.monitor-list {
  max-width: 880px;
  margin: 0 auto;
}
.monitor-entry {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-gray);
}
.monitor-entry:first-child { padding-top: 0.5rem; }
.monitor-entry:last-child { border-bottom: none; padding-bottom: 0; }
.monitor-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
}
.monitor-title i {
  flex: none;
  font-size: 1rem;
  color: var(--primary-blue);
  width: 1.6rem;
  text-align: center;
}
.monitor-entry p {
  margin: 0;
  padding-left: 2.3rem;          /* align body under the heading text */
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-medium);
  max-width: 75ch;
}
@media (max-width: 600px) {
  .monitor-entry p { padding-left: 0; }
}


/* Noctiluca page: 4-column horizontal feature cards */
.feature-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
}
@media (max-width: 1200px) {
  .feature-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .feature-grid.grid-4 {
    grid-template-columns: 1fr !important;
  }
}

