/* Hero Block Styles */
.hero-block {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

.hero-block .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1A2B4A;
}

.hero-block .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-block .hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A2B4A 0%, #243D6B 40%, #1A3A5C 70%, #0F1A2E 100%);
}

.hero-block .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(15,26,46,0.55) 0%, rgba(15,26,46,0.72) 60%, rgba(15,26,46,0.85) 100%);
}

.hero-block .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  width: 100%;
}

.hero-block .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  justify-content: center;
}

.hero-block .hero-kicker::before,
.hero-block .hero-kicker::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.hero-block h1 {
  color: #fff;
  margin-bottom: 12px;
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-block h1 .blue-acc {
  color: #7EB3E8;
}

.hero-block .hero-tagline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-block .hero-divider {
  width: 40px;
  height: 2px;
  background: #7EB3E8;
  margin: 0 auto 24px;
}

.hero-block .hero-desc-wrap {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-block .hero-desc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-block .hero-desc-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hero-block .hero-desc-val {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}

.hero-block .hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-block .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.hero-block .btn-white {
  background: #fff;
  color: #1A2B4A;
}

.hero-block .btn-white:hover {
  background: rgba(255,255,255,0.9);
}

.hero-block .btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.hero-block .btn-outline-white:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.hero-block .btn-lg {
  padding: 16px 36px;
  font-size: 13px;
}

.hero-block .hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 768px) {
  .hero-block h1 { font-size: 36px; }
  .hero-block .hero-desc-wrap { flex-direction: column; gap: 16px; }
  .hero-block .hero-tagline { font-size: 11px; letter-spacing: 0.04em; }
  .hero-block { min-height: 90vh; padding: 80px 16px 100px; }
}

@media (max-width: 480px) {
  .hero-block h1 { font-size: 28px; }
  .hero-block .hero-desc-item { gap: 2px; }
  .hero-block .hero-desc-label { font-size: 8px; letter-spacing: 0.15em; }
  .hero-block .hero-desc-value { font-size: 11px; }
}
