/* assets/css/hero.css */
.fm-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0d2245 40%, #0a4a7a 80%, #0075ae 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(46, 153, 206, .35) 0%, transparent 60%);
  pointer-events: none;
}

body.fm-dark .fm-hero {
  background: linear-gradient(135deg, #060e1a 0%, #091930 40%, #07354f 80%, #005a85 100%);
}

.fm-hero__inner {
  position: relative;
  z-index: 1;
}

.fm-hero__badge {
  display: inline-block;
  background: rgba(46, 153, 206, .2);
  border: 1px solid rgba(46, 153, 206, .5);
  color: #7dd3fc;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fm-hero__text {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.fm-hero__tagline {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.fm-hero__tagline em {
  color: #7dd3fc;
  font-style: normal;
}

.fm-hero__description {
  font-size: 1.1rem;
  color: #93c5e8;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.fm-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Stats bar */
.fm-hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  position: relative;
  z-index: 1;
}

.fm-hero__stat span {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #7dd3fc;
}

.fm-hero__stat small {
  font-size: .78rem;
  color: #93c5e8;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 768px) {
  .fm-hero { padding: 72px 20px; }
  .fm-hero__tagline { font-size: 2rem; }
  .fm-hero__stats { gap: 28px; }
  .fm-hero__stat span { font-size: 1.5rem; }
}
