/* ===== Hero ===== */
.hero-section { position: relative; height: 600px; overflow: hidden; margin-top: var(--header-height); }
.hero-slider { height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide.hero-default { background: linear-gradient(135deg, #0d3b8e 0%, #1a6fd4 50%, #00b4d8 100%); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.35); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero-text { max-width: 600px; color: #fff; }
.hero-text h1 { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 18px; text-shadow: 0 2px 8px rgba(0,0,0,.2); }
.hero-text p { font-size: 1.2rem; opacity: .9; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); font-weight: 600; }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* Hero dots */
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,.5); cursor: pointer; transition: all .3s; }
.hero-dot.active { width: 24px; background: #fff; }

/* ===== Stats ===== */
.stats-bar { background: var(--primary); color: #fff; padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 8px; }
.stat-num { font-size: 2.6rem; font-weight: 800; line-height: 1; }
.stat-unit { font-size: 1.4rem; font-weight: 700; opacity: .85; }
.stat-item p { font-size: .9rem; opacity: .85; margin-top: 8px; }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, #0d4ea6 100%); color: #fff; padding: 80px 0; text-align: center; }
.cta-section h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 14px; }
.cta-section p { font-size: 1.1rem; opacity: .85; margin-bottom: 32px; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-section { height: 480px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-section { height: 400px; }
  .hero-text h1 { font-size: 1.6rem; }
  .stat-num { font-size: 2rem; }
}
